From 734f7ff05b4d5ff5619ae39b99a51285de6c4bca Mon Sep 17 00:00:00 2001 From: Zoey Li Date: Fri, 10 Apr 2026 18:50:01 -0400 Subject: [PATCH 1/2] [ACR] az acr config content-trust: Begin deprecation of Docker Content Trust feature --- .../command_modules/acr/_breaking_change.py | 13 +- .../azure/cli/command_modules/acr/_errors.py | 12 - .../azure/cli/command_modules/acr/_help.py | 3 + .../azure/cli/command_modules/acr/_params.py | 3 + .../cli/command_modules/acr/check_health.py | 43 --- .../azure/cli/command_modules/acr/commands.py | 9 +- .../azure/cli/command_modules/acr/notary.py | 36 -- .../azure/cli/command_modules/acr/policy.py | 12 +- ..._domain_name_label_scope_tenant_reuse.yaml | 304 +++++++-------- ...test_acr_create_with_managed_registry.yaml | 310 +++++++-------- ..._create_with_metadata_search_disabled.yaml | 308 +++++++-------- ...r_create_with_metadata_search_enabled.yaml | 356 +++++++++--------- .../acr/tests/latest/test_acr_commands.py | 11 +- 13 files changed, 684 insertions(+), 736 deletions(-) delete mode 100644 src/azure-cli/azure/cli/command_modules/acr/notary.py diff --git a/src/azure-cli/azure/cli/command_modules/acr/_breaking_change.py b/src/azure-cli/azure/cli/command_modules/acr/_breaking_change.py index b96d1654675..a4a84f262d9 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/_breaking_change.py +++ b/src/azure-cli/azure/cli/command_modules/acr/_breaking_change.py @@ -5,8 +5,7 @@ from azure.cli.core.breaking_change import ( register_argument_deprecate, - register_command_group_deprecate, - register_logic_breaking_change + register_command_group_deprecate ) helm_bc_msg = 'In November 2020, Helm 2 reached end of life. ' \ @@ -33,16 +32,6 @@ register_command_group_deprecate(command_group='acr config content-trust', message=content_trust_bc_msg) -register_logic_breaking_change('acr check-health', 'Remove Notary client version validation', - detail='The Notary client version check will no longer be performed as part of the ' - 'check-health command due to Docker Content Trust deprecation.', - doc_link='https://aka.ms/acr/dctdeprecation') - -register_logic_breaking_change('acr config content-trust update', 'Remove content-trust enabled configuration', - detail='The `--status enabled` parameter will no longer be accepted and will result in ' - 'an error due to Docker Content Trust deprecation.', - doc_link='https://aka.ms/acr/dctdeprecation') - register_argument_deprecate('acr replication create', '--region-endpoint-enabled', redirect='--global-endpoint-routing') register_argument_deprecate('acr replication update', '--region-endpoint-enabled', diff --git a/src/azure-cli/azure/cli/command_modules/acr/_errors.py b/src/azure-cli/azure/cli/command_modules/acr/_errors.py index a582d779fc7..34d1b2a30c1 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/_errors.py +++ b/src/azure-cli/azure/cli/command_modules/acr/_errors.py @@ -69,18 +69,6 @@ def format_error_message(self, *args): ) -# NOTARY ERRORS -NOTARY_COMMAND_ERROR = ErrorClass( - "NOTARY_COMMAND_ERROR", - "Please verify if notary is installed." -) - -NOTARY_VERSION_ERROR = ErrorClass( - "NOTARY_VERSION_ERROR", - "An error occurred while retrieving notary version. Please make sure that you have the latest Azure CLI version, and that you are using the recommended notary version." -) - - # CONNECTIVITY ERRORS CONNECTIVITY_DNS_ERROR = ErrorClass( "CONNECTIVITY_DNS_ERROR", diff --git a/src/azure-cli/azure/cli/command_modules/acr/_help.py b/src/azure-cli/azure/cli/command_modules/acr/_help.py index e3e3907a5bc..1595abec627 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/_help.py +++ b/src/azure-cli/azure/cli/command_modules/acr/_help.py @@ -71,6 +71,7 @@ short-summary: Configure policies for Azure Container Registries. """ +# To be deprecated helps['acr config content-trust'] = """ type: group short-summary: Manage content-trust policy for Azure Container Registries. @@ -102,6 +103,7 @@ az acr config authentication-as-arm update -r myregistry --status Enabled """ +# To be deprecated helps['acr config content-trust show'] = """ type: command short-summary: Show the configured content-trust policy for an Azure Container Registry. @@ -111,6 +113,7 @@ az acr config content-trust show -r myregistry """ +# To be deprecated helps['acr config content-trust update'] = """ type: command short-summary: Update content-trust policy for an Azure Container Registry. diff --git a/src/azure-cli/azure/cli/command_modules/acr/_params.py b/src/azure-cli/azure/cli/command_modules/acr/_params.py index 5d4a4d68af6..620af5dc0a8 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/_params.py +++ b/src/azure-cli/azure/cli/command_modules/acr/_params.py @@ -152,6 +152,9 @@ def load_arguments(self, _): # pylint: disable=too-many-statements c.argument('registry_name', options_list=['--registry', '-r', c.deprecate(target='-n', redirect='-r', hide=True), c.deprecate(target='--name', redirect='--registry', hide=True)]) c.argument('status', help="Indicate whether authentication-as-arm is enabled.", arg_type=get_enum_type(PolicyStatus)) + with self.argument_context('acr config content-trust update') as c: + c.argument('status', help="Indicates whether content-trust is enabled. Only 'disabled' is allowed.", arg_type=get_enum_type([PolicyStatus.disabled])) + with self.argument_context('acr config content-trust') as c: c.argument('registry_name', options_list=['--registry', '-r', c.deprecate(target='-n', redirect='-r', hide=True), c.deprecate(target='--name', redirect='--registry', hide=True)]) c.argument('status', help="Indicates whether content-trust is enabled.", arg_type=get_enum_type(PolicyStatus)) diff --git a/src/azure-cli/azure/cli/command_modules/acr/check_health.py b/src/azure-cli/azure/cli/command_modules/acr/check_health.py index fed78bd47c4..023f2e75a29 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/check_health.py +++ b/src/azure-cli/azure/cli/command_modules/acr/check_health.py @@ -24,8 +24,6 @@ MIN_HELM_VERSION = "2.11.0" HELM_VERSION_REGEX = re.compile(r'(SemVer|Version):"v([.\d]+)"') ACR_CHECK_HEALTH_MSG = "Try running 'az acr check-health -n {} --yes' to diagnose this issue." -RECOMMENDED_NOTARY_VERSION = "0.6.0" -NOTARY_VERSION_REGEX = re.compile(r'Version:\s+([.\d]+)') DOCKER_PULL_WRONG_PLATFORM = 'cannot be used on this platform' @@ -181,46 +179,6 @@ def _get_helm_version(ignore_errors): _handle_error(obsolete_ver_error, ignore_errors) -def _get_notary_version(ignore_errors): - from ._errors import NOTARY_VERSION_ERROR - from .notary import get_notary_command - from packaging.version import parse # pylint: disable=import-error,no-name-in-module - - # Notary command check - notary_command, error = get_notary_command(is_diagnostics_context=True) - - if error: - _handle_error(error, ignore_errors) - return - - # Notary version check - output, warning, stderr, succeeded = _subprocess_communicate([notary_command, "version"]) - - if not succeeded: - _handle_error(NOTARY_VERSION_ERROR.append_error_message(stderr), ignore_errors) - return - - if warning: - logger.warning(warning) - - # Retrieve the notary version if regex pattern is found - match_obj = NOTARY_VERSION_REGEX.search(output) - if match_obj: - output = match_obj.group(1) - - logger.warning("Notary version: %s", output) - - # Display error if the current version does not match the recommended version - if match_obj and parse(output) != parse(RECOMMENDED_NOTARY_VERSION): - version_msg = "upgrade" - if parse(output) > parse(RECOMMENDED_NOTARY_VERSION): - version_msg = "downgrade" - obsolete_ver_error = NOTARY_VERSION_ERROR.set_error_message( - "Current notary version is not recommended. Please {} your notary client to version {}." - .format(version_msg, RECOMMENDED_NOTARY_VERSION)) - _handle_error(obsolete_ver_error, ignore_errors) - - # Checks for the connectivity # Check DNS lookup and access to challenge endpoint def _get_registry_status(login_server, registry_name, ignore_errors): @@ -481,6 +439,5 @@ def acr_check_health(cmd, # pylint: disable useless-return if not in_cloud_console: _get_helm_version(ignore_errors) - _get_notary_version(ignore_errors) logger.warning(FAQ_MESSAGE) diff --git a/src/azure-cli/azure/cli/command_modules/acr/commands.py b/src/azure-cli/azure/cli/command_modules/acr/commands.py index a82bd6f679b..ae16ca16e3a 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/commands.py +++ b/src/azure-cli/azure/cli/command_modules/acr/commands.py @@ -342,7 +342,14 @@ def load_command_table(self, _): g.command('logs', 'acr_taskrun_logs', client_factory=cf_acr_runs, table_transformer=None) - with self.command_group('acr config content-trust', acr_policy_util) as g: + def _dct_deprecate_message(self): + msg = "This {} has been deprecated and will be removed in a future release.".format(self.object_type) + msg += " Learn more about the transition from Docker Content Trust to the Notary Project: " + msg += "https://aka.ms/acr/dctdeprecation" + return msg + + with self.command_group('acr config content-trust', acr_policy_util, + deprecate_info=self.deprecate(message_func=_dct_deprecate_message, hide=False)) as g: g.show_command('show', 'acr_config_content_trust_show') g.command('update', 'acr_config_content_trust_update') diff --git a/src/azure-cli/azure/cli/command_modules/acr/notary.py b/src/azure-cli/azure/cli/command_modules/acr/notary.py deleted file mode 100644 index e320f120ccd..00000000000 --- a/src/azure-cli/azure/cli/command_modules/acr/notary.py +++ /dev/null @@ -1,36 +0,0 @@ -# -------------------------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for license information. -# -------------------------------------------------------------------------------------------- - -from knack.util import CLIError -from knack.log import get_logger - -logger = get_logger(__name__) - - -def get_notary_command(is_diagnostics_context=False): - from ._errors import NOTARY_COMMAND_ERROR - from subprocess import PIPE, Popen - from platform import system - - if system() == "Windows": - notary_command = "notary.exe" - else: - notary_command = "notary" - - try: - p = Popen([notary_command, "--help"], stdout=PIPE, stderr=PIPE) - _, stderr = p.communicate() - except OSError as e: - logger.debug("Could not run '%s' command. Exception: %s", notary_command, str(e)) - if is_diagnostics_context: - return None, NOTARY_COMMAND_ERROR - raise CLIError(NOTARY_COMMAND_ERROR.get_error_message()) - - if stderr: - if is_diagnostics_context: - return None, NOTARY_COMMAND_ERROR.append_error_message(stderr.decode()) - raise CLIError(NOTARY_COMMAND_ERROR.append_error_message(stderr.decode()).get_error_message()) - - return notary_command, None diff --git a/src/azure-cli/azure/cli/command_modules/acr/policy.py b/src/azure-cli/azure/cli/command_modules/acr/policy.py index 4615909a97d..97a2ffd8885 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/policy.py +++ b/src/azure-cli/azure/cli/command_modules/acr/policy.py @@ -34,10 +34,20 @@ def acr_config_content_trust_update(cmd, client, registry_name, status=None, - resource_group_name=None): + resource_group_name=None, + yes=False): registry, resource_group_name = validate_premium_registry( cmd, registry_name, resource_group_name, POLICIES_NOT_SUPPORTED) + warning_message = ( + "Content Trust is being deprecated and will be completely removed on March 31, 2028. " + "It cannot be enabled once disabled. Please submit a support ticket if you wish to " + "disable and subsequently re-enable this feature. When disabled, your images will " + "remain in the registry, but all your signatures will be deleted permanently. " + "Are you sure you want to disable content trust?" + ) + user_confirmation(warning_message, yes) + policies = registry.policies if status: 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 77fb6097019..971f0c4407c 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,12 +18,12 @@ interactions: ParameterSetName: - -n -g -l --sku --dnl-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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:15.8731365+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:24:37.7514344+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:24:37.7514768+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:05.3689626+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:12.4811566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:12.4812035+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -34,7 +34,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:37 GMT + - Fri, 10 Apr 2026 22:33:12 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/westus2/379d2f9a-3145-4fac-8e45-56eaede5ae94 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/52f95bdc-098d-4b97-a153-3707b5b69314 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 3F96E5CEB9AA4429925EE4C22E5C9CE6 Ref B: BY1AA1072315054 Ref C: 2026-03-24T01:24:15Z' + - 'Ref A: 258909693D5E478DBDD5F43DE9BD08B5 Ref B: BN1AA2051014025 Ref C: 2026-04-10T22:33:04Z' status: code: 200 message: OK @@ -75,7 +75,7 @@ interactions: ParameterSetName: - -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.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/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-01-01-preview response: @@ -90,7 +90,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:38 GMT + - Fri, 10 Apr 2026 22:33:14 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=68abb7a6-9056-4d60-bf87-3b50a45559cd/westcentralus/a2dc46f8-9596-4f00-b8f0-38d4fdc077e3 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/7620948c-742c-4139-9f51-a0ca8d77e07a x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B6B20607CBE840A58620B9ED08F9C999 Ref B: BY1AA1072317062 Ref C: 2026-03-24T01:24:38Z' + - 'Ref A: 8D4B842148F64912AA1440E0A8A39C55 Ref B: BN1AA2051015037 Ref C: 2026-04-10T22:33:14Z' status: code: 200 message: OK @@ -124,12 +124,12 @@ interactions: ParameterSetName: - -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.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?api-version=2026-01-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-03-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:15.8731365+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:24:37.7514344+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:24:37.7514768+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:05.3689626+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:12.4811566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:12.4812035+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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"}}]}' headers: api-supported-versions: - 2026-01-01-preview @@ -140,7 +140,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:38 GMT + - Fri, 10 Apr 2026 22:33:16 GMT expires: - '-1' pragma: @@ -156,7 +156,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B64B797F936A496BB1387A6F10C7B032 Ref B: BY1AA1072320036 Ref C: 2026-03-24T01:24:38Z' + - 'Ref A: D09D1A3E508B4845A0B6E444FAE85C52 Ref B: BN1AA2051014023 Ref C: 2026-04-10T22:33:16Z' status: code: 200 message: OK @@ -174,12 +174,12 @@ interactions: ParameterSetName: - -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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:15.8731365+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:24:37.7514344+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:24:37.7514768+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:05.3689626+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:12.4811566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:12.4812035+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -190,7 +190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:39 GMT + - Fri, 10 Apr 2026 22:33:17 GMT expires: - '-1' pragma: @@ -204,7 +204,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7E421CD0CEE64AC3828814BAECF84E3C Ref B: BY1AA1072319031 Ref C: 2026-03-24T01:24:39Z' + - 'Ref A: 2330019D490D4697A61A0AB6183B37AF Ref B: BN1AA2051015009 Ref C: 2026-04-10T22:33:18Z' status: code: 200 message: OK @@ -222,12 +222,12 @@ interactions: ParameterSetName: - -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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:15.8731365+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:24:37.7514344+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:24:37.7514768+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:05.3689626+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:12.4811566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:12.4812035+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -238,7 +238,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:39 GMT + - Fri, 10 Apr 2026 22:33:20 GMT expires: - '-1' pragma: @@ -252,7 +252,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 08086C1B701340E29F9E99727EBE03FD Ref B: BY1AA1072318062 Ref C: 2026-03-24T01:24:39Z' + - 'Ref A: 8A51FDB471B84C8F9ACDC9A8D27FAD0A Ref B: BN1AA2051012009 Ref C: 2026-04-10T22:33:20Z' status: code: 200 message: OK @@ -270,7 +270,7 @@ interactions: ParameterSetName: - -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.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/clireg000002/listUsages?api-version=2026-01-01-preview response: @@ -286,7 +286,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:38 GMT + - Fri, 10 Apr 2026 22:33:22 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=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/36e134c0-6be1-42b6-9d29-7b01cec89af9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/433382ab-f49e-4aad-bd0a-8750755e76b4 x-ms-ratelimit-remaining-subscription-global-reads: - - '16499' + - '16498' x-msedge-ref: - - 'Ref A: 40269C1AAE8E46D286D174B95D80E834 Ref B: BY1AA1072315040 Ref C: 2026-03-24T01:24:39Z' + - 'Ref A: C87B91E6876846A299DC45056E67F3C5 Ref B: BN1AA2051012009 Ref C: 2026-04-10T22:33:22Z' status: code: 200 message: OK @@ -320,12 +320,12 @@ interactions: ParameterSetName: - -n -g --tags --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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:15.8731365+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:24:37.7514344+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:24:37.7514768+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:05.3689626+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:12.4811566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:12.4812035+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -336,7 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:39 GMT + - Fri, 10 Apr 2026 22:33:24 GMT expires: - '-1' pragma: @@ -350,7 +350,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 66BAAD491EA546019410628E6A2BA5CF Ref B: BY1AA1072320036 Ref C: 2026-03-24T01:24:39Z' + - 'Ref A: 53C55A6CE85D4B88B58C613B0C952D19 Ref B: BN1AA2051015051 Ref C: 2026-04-10T22:33:24Z' status: code: 200 message: OK @@ -373,12 +373,12 @@ interactions: ParameterSetName: - -n -g --tags --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.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:40.1806614+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:24:37.7514344+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:24:37.7514768+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:12.4811566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:12.4812035+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -389,7 +389,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:39 GMT + - Fri, 10 Apr 2026 22:33:27 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=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/57e27070-19b6-4087-a7f2-c41ba4a912c6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/b504b4df-53c7-4e95-84b0-d8c0eb778ded x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: F836F4E01345465EB92A33D20BBA5899 Ref B: BY1AA1072318052 Ref C: 2026-03-24T01:24:39Z' + - 'Ref A: 8FEA0E959F424B3FB985DC83550064D7 Ref B: BN1AA2051013049 Ref C: 2026-04-10T22:33:27Z' status: code: 200 message: OK @@ -425,21 +425,22 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - 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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:24:15.8731365Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:40.1806614Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:03.9333646Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:21.3308144Z"}},{"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-04-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:29.1174029Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8183' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:40 GMT + - Fri, 10 Apr 2026 22:33:30 GMT expires: - '-1' pragma: @@ -453,7 +454,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DA5F37A882104E0E862FD04090440639 Ref B: BY1AA1072318023 Ref C: 2026-03-24T01:24:40Z' + - 'Ref A: 057C0C1867F1438EAC6AE3377BF43027 Ref B: BN1AA2051015023 Ref C: 2026-04-10T22:33:29Z' status: code: 200 message: OK @@ -471,12 +472,12 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - 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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:40.1806614+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:24:37.7514344+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:24:37.7514768+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:12.4811566+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:12.4812035+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -487,7 +488,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:40 GMT + - Fri, 10 Apr 2026 22:33:32 GMT expires: - '-1' pragma: @@ -501,7 +502,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9F87FCDE094F42078839A85DBBEC1924 Ref B: SJC211051205009 Ref C: 2026-03-24T01:24:41Z' + - 'Ref A: 28964E660EB845F989CF6F0987587C1B Ref B: BN1AA2051012045 Ref C: 2026-04-10T22:33:32Z' status: code: 200 message: OK @@ -526,23 +527,23 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:41.4232016+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:24:41.4655338+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:24:41.4655828+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:35.1751904+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:33:35.2091053+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:35.209151+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1704' + - '1703' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:40 GMT + - Fri, 10 Apr 2026 22:33:34 GMT expires: - '-1' pragma: @@ -554,13 +555,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/efecdab4-aae3-4645-a404-bf41aab79c42 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/cfc99075-615c-4f04-9e3e-5d3fb7e9a32d x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 8A865E3E31FA4988878D353B57F29817 Ref B: SJC211051201009 Ref C: 2026-03-24T01:24:41Z' + - 'Ref A: 66B06AAF288A46CA985760F1E84AABF2 Ref B: BN1AA2051014039 Ref C: 2026-04-10T22:33:34Z' status: code: 200 message: OK @@ -578,21 +579,22 @@ 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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:24:15.8731365Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:40.1806614Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:21.3308144Z"}},{"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-04-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:34.2977689Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8202' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:41 GMT + - Fri, 10 Apr 2026 22:33:37 GMT expires: - '-1' pragma: @@ -606,7 +608,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A37AEA3FB4B042AF81C8B2B6D9407F3B Ref B: SJC211051201037 Ref C: 2026-03-24T01:24:41Z' + - 'Ref A: A20DD47DCC3D4BF89E950B55619E3D50 Ref B: BN1AA2051014045 Ref C: 2026-04-10T22:33:37Z' status: code: 200 message: OK @@ -624,23 +626,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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:41.4232016+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:24:41.4655338+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:24:41.4655828+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:35.1751904+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:33:35.2091053+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:35.209151+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1704' + - '1703' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:41 GMT + - Fri, 10 Apr 2026 22:33:39 GMT expires: - '-1' pragma: @@ -654,7 +656,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 98025B4B95114A31A1D704708A448308 Ref B: BY1AA1072317040 Ref C: 2026-03-24T01:24:41Z' + - 'Ref A: 3EB3454E6249496395D8C97733AD9F41 Ref B: BN1AA2051013037 Ref C: 2026-04-10T22:33:39Z' status: code: 200 message: OK @@ -670,23 +672,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n --status + - -n --status --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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:24:15.8731365Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:40.1806614Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","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-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"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-04-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:34.2977689Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8222' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:41 GMT + - Fri, 10 Apr 2026 22:33:42 GMT expires: - '-1' pragma: @@ -700,7 +703,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 765E7AD183AC42B187BA8ED52B8F200A Ref B: BY1AA1072318040 Ref C: 2026-03-24T01:24:42Z' + - 'Ref A: B44A5E0C53DB466F91029386289E31A9 Ref B: BN1AA2051012023 Ref C: 2026-04-10T22:33:42Z' status: code: 200 message: OK @@ -716,25 +719,25 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n --status + - -n --status --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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:41.4232016+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:24:41.4655338+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:24:41.4655828+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:35.1751904+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:33:35.2091053+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:35.209151+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1704' + - '1703' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:41 GMT + - Fri, 10 Apr 2026 22:33:44 GMT expires: - '-1' pragma: @@ -748,14 +751,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: ECB6D81FAC05407891C3A800847649CB Ref B: BY1AA1072315060 Ref C: 2026-03-24T01:24:42Z' + - 'Ref A: CB1DB115DA2344CC8561C9BFADFE7679 Ref B: BN1AA2051014047 Ref C: 2026-04-10T22:33:45Z' status: code: 200 message: OK - request: body: '{"properties": {"policies": {"quarantinePolicy": {"status": "disabled"}, - "trustPolicy": {"type": "Notary", "status": "enabled"}, "retentionPolicy": {"days": - 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}}}' headers: Accept: @@ -767,29 +770,29 @@ interactions: Connection: - keep-alive Content-Length: - - '346' + - '347' Content-Type: - application/json ParameterSetName: - - -n --status + - -n --status --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.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:42.7706369+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:24:42.8561273+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:24:42.8562008+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:47.7545499+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:33:47.7996713+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:47.7997338+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1703' + - '1704' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:42 GMT + - Fri, 10 Apr 2026 22:33:47 GMT expires: - '-1' pragma: @@ -801,13 +804,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d3ac8e4c-6e6c-4fdd-8661-4e4f63ff4f69 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/c0644079-901e-4a3c-993d-580e733623c4 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 41C578EE095E40ABA1964CD79EA5AABF Ref B: SJC211051203053 Ref C: 2026-03-24T01:24:42Z' + - 'Ref A: F092BB8315874CC8BD4B586E514B3741 Ref B: BN1AA2051012025 Ref C: 2026-04-10T22:33:47Z' status: code: 200 message: OK @@ -825,21 +828,22 @@ interactions: ParameterSetName: - -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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:24:15.8731365Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:40.1806614Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","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-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"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-04-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:34.2977689Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8222' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:42 GMT + - Fri, 10 Apr 2026 22:33:50 GMT expires: - '-1' pragma: @@ -853,7 +857,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FCB242AE9D4C4AFE8B1ACC8CE7229C4A Ref B: SJC211051201027 Ref C: 2026-03-24T01:24:43Z' + - 'Ref A: 9726DE3CBDB64453A8D22EB7E3C92EBB Ref B: BN1AA2051015021 Ref C: 2026-04-10T22:33:50Z' status: code: 200 message: OK @@ -871,23 +875,23 @@ interactions: ParameterSetName: - -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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:42.7706369+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:24:42.8561273+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:24:42.8562008+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:47.7545499+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:33:47.7996713+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:47.7997338+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1703' + - '1704' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:42 GMT + - Fri, 10 Apr 2026 22:33:52 GMT expires: - '-1' pragma: @@ -901,7 +905,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2859BDE04435412BA4EB1C8A6929F635 Ref B: BY1AA1072319060 Ref C: 2026-03-24T01:24:43Z' + - 'Ref A: 1C4B26A4CB8440F7B2E9AC136873EEA6 Ref B: BN1AA2051013027 Ref C: 2026-04-10T22:33:52Z' status: code: 200 message: OK @@ -919,21 +923,22 @@ interactions: ParameterSetName: - -r --status --days --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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:24:15.8731365Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:40.1806614Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","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-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"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-04-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","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-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8242' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:44 GMT + - Fri, 10 Apr 2026 22:33:54 GMT expires: - '-1' pragma: @@ -947,7 +952,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7C49A5B3CBE64097AE8552493F1DF6C9 Ref B: SJC211051201029 Ref C: 2026-03-24T01:24:44Z' + - 'Ref A: 7535353C94D34609AC8F5736F7F449EE Ref B: BN1AA2051014053 Ref C: 2026-04-10T22:33:55Z' status: code: 200 message: OK @@ -965,23 +970,23 @@ interactions: ParameterSetName: - -r --status --days --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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:42.7706369+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:24:42.8561273+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:24:42.8562008+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:47.7545499+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:33:47.7996713+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:47.7997338+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1703' + - '1704' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:44 GMT + - Fri, 10 Apr 2026 22:33:57 GMT expires: - '-1' pragma: @@ -995,14 +1000,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 207CA617F5E64691AFFB0656D0109A13 Ref B: BY1AA1072317031 Ref C: 2026-03-24T01:24:44Z' + - 'Ref A: 4FF9251977EA4D5C872268B9814C198C Ref B: BN1AA2051014039 Ref C: 2026-04-10T22:33:58Z' status: code: 200 message: OK - request: body: '{"properties": {"policies": {"quarantinePolicy": {"status": "disabled"}, - "trustPolicy": {"type": "Notary", "status": "enabled"}, "retentionPolicy": {"days": - 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 30, "status": "enabled"}}}}' headers: Accept: @@ -1014,29 +1019,29 @@ interactions: Connection: - keep-alive Content-Length: - - '346' + - '347' Content-Type: - application/json ParameterSetName: - -r --status --days --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.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:45.2619597+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:24:45.307051+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-03-24T01:24:45.3071085+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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:01.078652+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:01.1145892+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-04-10T22:34:01.1146442+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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1702' + - '1703' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:44 GMT + - Fri, 10 Apr 2026 22:34:00 GMT expires: - '-1' pragma: @@ -1048,13 +1053,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/0d957349-e7e5-49e0-827c-8cb49209e02f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/de8e4194-87e5-4830-a994-ffc558f2bc23 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 766B06BAAC44415DB615017865C5F7A2 Ref B: BY1AA1072318054 Ref C: 2026-03-24T01:24:44Z' + - 'Ref A: 095FE43461C54A9A9665855BB0ADD555 Ref B: BN1AA2051015019 Ref C: 2026-04-10T22:34:00Z' status: code: 200 message: OK @@ -1072,21 +1077,22 @@ 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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:24:15.8731365Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:40.1806614Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","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-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"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-04-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","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-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8242' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:45 GMT + - Fri, 10 Apr 2026 22:34:03 GMT expires: - '-1' pragma: @@ -1100,7 +1106,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 18B418B44F43467B9582C8761AFD2B5E Ref B: SJC211051201051 Ref C: 2026-03-24T01:24:45Z' + - 'Ref A: 594D1696DCA34B1F91BF68532B98ADC2 Ref B: BN1AA2051015029 Ref C: 2026-04-10T22:34:03Z' status: code: 200 message: OK @@ -1118,23 +1124,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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:45.2619597+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:24:45.307051+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-03-24T01:24:45.3071085+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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:01.078652+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:01.1145892+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-04-10T22:34:01.1146442+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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1702' + - '1703' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:45 GMT + - Fri, 10 Apr 2026 22:34:06 GMT expires: - '-1' pragma: @@ -1148,7 +1154,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 141D338C3B244BF0A2E66AEEE93DEB26 Ref B: SJC211051204033 Ref C: 2026-03-24T01:24:45Z' + - 'Ref A: 59E84501D3FB42C49F69D6EAE74AD980 Ref B: BN1AA2051012009 Ref C: 2026-04-10T22:34:06Z' status: code: 200 message: OK @@ -1166,23 +1172,23 @@ interactions: ParameterSetName: - -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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:45.2619597+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:24:45.307051+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-03-24T01:24:45.3071085+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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:01.078652+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:01.1145892+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-04-10T22:34:01.1146442+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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1702' + - '1703' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:45 GMT + - Fri, 10 Apr 2026 22:34:07 GMT expires: - '-1' pragma: @@ -1196,7 +1202,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 678CAF7BE0B74F64B54B3DD9240AAC92 Ref B: SJC211051203027 Ref C: 2026-03-24T01:24:45Z' + - 'Ref A: 85EA7B24900C45678BD0AD943ADA072E Ref B: BN1AA2051014037 Ref C: 2026-04-10T22:34:08Z' status: code: 200 message: OK @@ -1216,12 +1222,12 @@ interactions: ParameterSetName: - -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.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/clireg000002/listCredentials?api-version=2026-01-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"AfWp78wGWeHN4uUMCd2DpqynaCk8QTGKw0Mtwbk6IM5rEeQX56NnJQQJ99CDAC4f1cMEqg7NAAACAZCRUZlf"},{"name":"password2","value":"MorhMfyXhlbE0yJ8ldt2qcptEVpvfW70uqjW4F4v5NItG1ACQsndJQQJ99CDAC4f1cMEqg7NAAACAZCRbg28"}]}' headers: api-supported-versions: - 2026-01-01-preview @@ -1232,7 +1238,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:46 GMT + - Fri, 10 Apr 2026 22:34:10 GMT expires: - '-1' pragma: @@ -1244,13 +1250,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/59415e16-58ab-47e3-bf19-d9d5a07004a0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/6060d33b-2763-4e11-bead-462baec9cfbc x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E65F448696D74ED197474221FA4BF7FC Ref B: BY1AA1072317052 Ref C: 2026-03-24T01:24:45Z' + - 'Ref A: 37047C701CFE4B5C9D51F42E3200FF42 Ref B: BN1AA2051012011 Ref C: 2026-04-10T22:34:11Z' status: code: 200 message: OK @@ -1270,27 +1276,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.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (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?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:15.8731365+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:45.2619597+00:00"},"properties":{"loginServer":"clireg000002-engachg8bkfwhwdy.azurecr.io","creationDate":"2026-03-24T01:24:15.8731365Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:24:45.307051+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-03-24T01:24:45.3071085+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-04-10T22:33:05.3689626+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:01.078652+00:00"},"properties":{"loginServer":"clireg000002-ahfudghzdeanfgg9.azurecr.io","creationDate":"2026-04-10T22:33:05.3689626Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:01.1145892+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-04-10T22:34:01.1146442+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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1701' + - '1702' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:24:45 GMT + - Fri, 10 Apr 2026 22:34:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-3e2d7cac-2720-11f1-a81d-70a8a51b6037?api-version=2026-01-01-preview&t=639099122864350588&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=EQw4NDlQIpgwpj1iSWnsHiD5n2FVaeOFuPjJUcNb0DJ4w0PVc2-mdJDNTqZ9kiFOwW_cXKxWIbivVolyngzogwJoDZCeBKefXJII1n4Gh7liWpQrnAcCsbFqEHyGesfLNZOv37BA8PIFmk3sdZ6Ub986cEUawskDTbDqyuMiW3CAtLV3Wcd5U1vhJ9BWy7qbFyTNATUNuxxX4s29OJXxicNr3WMI9wnlUD1mUJdXaukcIBU90Lvuq0ouBoc2rR1vcuVLLr0owSoqxQpQZPRTzOq-WSJI-i61_afh-uNJdyAY8aZBM0i9zrpc0pbEMhH7zTN38-f70fIdYpmBDHMhyg&h=YRhMCEA58ClZj5FpEXR9D5hZjeKvEe9HfNefx2DUwLk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-69b56cf2-352d-11f1-a3e2-44a3bbbaa7c4?api-version=2026-01-01-preview&t=639114572550663072&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=Ggo84EkV_dlLePQDzpJi0AbxZAFE3dthGdTP1fcdKAzVbLR4E3e3MQwetF_xryvigEyZ28_WwAuG-Ufhom22Fs560S6kBnIRn7p4kcw82VT7wztJdDoPQd5AHYtfKR7DcDuJqW4gwFSbFMIHAbQbTYrjRfw_pnL1TRX2n9fqWK5LtqF33LNTdYsSDHFU-qGHz9-sh8deM18vT2AuuWJVzKO46Zsyuxj1cZh2_YQ6lJaaDbxgIFT7S3nTJ31WJR72J0gGtGQ810Bi5F_AWJqmSUR4PTUKAmjfwg2dBNdheFbJ4FQcckfbPVQrwCuhIGPQAE3nJCc1WHctxPbJPBgQzw&h=YCst4asy3po-8oqqlXoF1migHAns1fiBo0qMEanitF0 pragma: - no-cache strict-transport-security: @@ -1300,13 +1306,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/cc4b1fdc-c259-4d0d-81bc-dbe740a398fa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/2281e545-068b-43c7-8bea-a1123993c92c x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 6DB31F620BD44EF6ACF5F41414AF7D4A Ref B: BY1AA1072318060 Ref C: 2026-03-24T01:24:46Z' + - 'Ref A: 9D60F08CC5314708A9DC7D40ED196F23 Ref B: BN1AA2051013021 Ref C: 2026-04-10T22:34:14Z' status: code: 202 message: Accepted @@ -1324,9 +1330,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.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/westus/operationResults/registries-3e2d7cac-2720-11f1-a81d-70a8a51b6037?api-version=2026-01-01-preview&t=639099122864350588&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=EQw4NDlQIpgwpj1iSWnsHiD5n2FVaeOFuPjJUcNb0DJ4w0PVc2-mdJDNTqZ9kiFOwW_cXKxWIbivVolyngzogwJoDZCeBKefXJII1n4Gh7liWpQrnAcCsbFqEHyGesfLNZOv37BA8PIFmk3sdZ6Ub986cEUawskDTbDqyuMiW3CAtLV3Wcd5U1vhJ9BWy7qbFyTNATUNuxxX4s29OJXxicNr3WMI9wnlUD1mUJdXaukcIBU90Lvuq0ouBoc2rR1vcuVLLr0owSoqxQpQZPRTzOq-WSJI-i61_afh-uNJdyAY8aZBM0i9zrpc0pbEMhH7zTN38-f70fIdYpmBDHMhyg&h=YRhMCEA58ClZj5FpEXR9D5hZjeKvEe9HfNefx2DUwLk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-69b56cf2-352d-11f1-a3e2-44a3bbbaa7c4?api-version=2026-01-01-preview&t=639114572550663072&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=Ggo84EkV_dlLePQDzpJi0AbxZAFE3dthGdTP1fcdKAzVbLR4E3e3MQwetF_xryvigEyZ28_WwAuG-Ufhom22Fs560S6kBnIRn7p4kcw82VT7wztJdDoPQd5AHYtfKR7DcDuJqW4gwFSbFMIHAbQbTYrjRfw_pnL1TRX2n9fqWK5LtqF33LNTdYsSDHFU-qGHz9-sh8deM18vT2AuuWJVzKO46Zsyuxj1cZh2_YQ6lJaaDbxgIFT7S3nTJ31WJR72J0gGtGQ810Bi5F_AWJqmSUR4PTUKAmjfwg2dBNdheFbJ4FQcckfbPVQrwCuhIGPQAE3nJCc1WHctxPbJPBgQzw&h=YCst4asy3po-8oqqlXoF1migHAns1fiBo0qMEanitF0 response: body: string: '' @@ -1336,11 +1342,11 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 01:24:46 GMT + - Fri, 10 Apr 2026 22:34:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-3e2d7cac-2720-11f1-a81d-70a8a51b6037?api-version=2026-01-01-preview&t=639099122867229519&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=F6tBLSoHixZJ2yr6d6JcAF_EWk9nanrkrT2699pV_IiAvKZUn_ddAQzmZmTZ80-dutsrbpJWXqUQ3h4SOzBBV7PuG3M6H-2YdKaxR8y-edpxmOtjjXXlamULV0lzOBgIVPE-PcLtCKMVMtqY7ofhz4An1GrbyEaa9Qdv00pR1XdJD0SKtsMXm2BuCL3wXbhyFzfmVaclmUKZnMqTjStPta4aasXq9O0hXagW78AMl4nS_27z0PKdP3YLiXXLuCckQyC9FF5bPVKz17PrKS0GJuu1Bey9vkm-47Agu1b66Y0nsuwrIVNiZWq8U9nXK2c3YKMvfeE1-E3bV3BVuSqNiA&h=i_AcuCqeZDjR3N6VH9cWuDRXy2qEfxD9Ij3hvDMRyjA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-69b56cf2-352d-11f1-a3e2-44a3bbbaa7c4?api-version=2026-01-01-preview&t=639114572580269636&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=Xi73HI8hnz4SPCKEFWG7XLWZP5q1L4qKwVvvaeO4cZ6HN57uVOAXLvx1TdSeGzkF94m-VZn17fJHmaQItn5vhOROn6tVHJ2F_9Qw1Hh9zBqg1v2CNGiDPSyqZX8ZQb_pJV8JM9oYUCxM3FJT1Z1UrqKA_XbaDPNfGpCILxgbLW8w-jFntbZjhN_hvufyFsZXZbSJXwa3aTcyJL3VZ1Ugk1iANtv6vU2Xty6Mi0BuJRxT627umPPCWSwYS-6OLWEzxZlQB4JP_tlYSG1-9_Jd9HXAMWnjfyTRfocxnwd6XaD8NbyBXaDi8a-RZw9Xs2VERr7i8yWFKcwfUfhp3rcGjQ&h=xZb6CIVZmEhOw-u0oGEYo9VvrtD52Sugr3uyFj0yGME pragma: - no-cache strict-transport-security: @@ -1350,11 +1356,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5521f7a4-650b-46ec-9d21-d63a6686c08d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/5215f61c-3f31-479a-b3b3-d263f4455344 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D635E53C7CE042EABC546271E8D205CE Ref B: BY1AA1072319034 Ref C: 2026-03-24T01:24:46Z' + - 'Ref A: 77C8B382AC6F4A86BD036A0E85671F17 Ref B: BN1AA2051014031 Ref C: 2026-04-10T22:34:17Z' status: code: 202 message: Accepted @@ -1372,9 +1378,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.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/westus/operationResults/registries-3e2d7cac-2720-11f1-a81d-70a8a51b6037?api-version=2026-01-01-preview&t=639099122867229519&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=F6tBLSoHixZJ2yr6d6JcAF_EWk9nanrkrT2699pV_IiAvKZUn_ddAQzmZmTZ80-dutsrbpJWXqUQ3h4SOzBBV7PuG3M6H-2YdKaxR8y-edpxmOtjjXXlamULV0lzOBgIVPE-PcLtCKMVMtqY7ofhz4An1GrbyEaa9Qdv00pR1XdJD0SKtsMXm2BuCL3wXbhyFzfmVaclmUKZnMqTjStPta4aasXq9O0hXagW78AMl4nS_27z0PKdP3YLiXXLuCckQyC9FF5bPVKz17PrKS0GJuu1Bey9vkm-47Agu1b66Y0nsuwrIVNiZWq8U9nXK2c3YKMvfeE1-E3bV3BVuSqNiA&h=i_AcuCqeZDjR3N6VH9cWuDRXy2qEfxD9Ij3hvDMRyjA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-69b56cf2-352d-11f1-a3e2-44a3bbbaa7c4?api-version=2026-01-01-preview&t=639114572580269636&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=Xi73HI8hnz4SPCKEFWG7XLWZP5q1L4qKwVvvaeO4cZ6HN57uVOAXLvx1TdSeGzkF94m-VZn17fJHmaQItn5vhOROn6tVHJ2F_9Qw1Hh9zBqg1v2CNGiDPSyqZX8ZQb_pJV8JM9oYUCxM3FJT1Z1UrqKA_XbaDPNfGpCILxgbLW8w-jFntbZjhN_hvufyFsZXZbSJXwa3aTcyJL3VZ1Ugk1iANtv6vU2Xty6Mi0BuJRxT627umPPCWSwYS-6OLWEzxZlQB4JP_tlYSG1-9_Jd9HXAMWnjfyTRfocxnwd6XaD8NbyBXaDi8a-RZw9Xs2VERr7i8yWFKcwfUfhp3rcGjQ&h=xZb6CIVZmEhOw-u0oGEYo9VvrtD52Sugr3uyFj0yGME response: body: string: '' @@ -1384,7 +1390,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 01:24:56 GMT + - Fri, 10 Apr 2026 22:34:30 GMT expires: - '-1' pragma: @@ -1396,11 +1402,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/e2783fc3-5a60-41ef-8ffc-25284de2d36b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/318a1b23-ee98-4fe2-9b7a-791add3069d3 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: DC7DD004D86F4BE4896E16DD1C6A35B3 Ref B: BY1AA1072316042 Ref C: 2026-03-24T01:24:57Z' + - 'Ref A: B00F89198A044F308D20A0F07A5A8488 Ref B: BN1AA2051015009 Ref C: 2026-04-10T22:34:30Z' status: code: 200 message: OK 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 83c33c58343..b8aab41cc3e 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.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - 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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:59.6682934+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:25:11.4696415+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:11.4696818+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:03.9333646+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:16.3789386+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:16.378983+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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: - - '1665' + - '1664' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:11 GMT + - Fri, 10 Apr 2026 22:33: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=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/3c9626ba-bda5-49cb-8ebc-650ff6cdfb2c + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/72e00523-8b2c-49f8-99a0-bf35711cdcb4 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: BCCF784F3A5D48958F1585CE5F20B2B9 Ref B: BY1AA1072317054 Ref C: 2026-03-24T01:24:59Z' + - 'Ref A: 128C9CA884004EB58C75C7C56DC9F9CE Ref B: BN1AA2051012039 Ref C: 2026-04-10T22:33:03Z' status: code: 200 message: OK @@ -75,7 +75,7 @@ interactions: ParameterSetName: - -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.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/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-01-01-preview response: @@ -90,7 +90,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:11 GMT + - Fri, 10 Apr 2026 22:33:18 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=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/0dee656c-415b-424d-93d4-d6cfde8d31a9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/762eae3f-f8dd-4167-ad88-4642f6cab72b x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 761B9708025D4842810E8918031CBE9D Ref B: BY1AA1072319062 Ref C: 2026-03-24T01:25:11Z' + - 'Ref A: 9B9B58CD7A964DFD96AD0E78F87C9BF4 Ref B: BN1AA2051013053 Ref C: 2026-04-10T22:33:18Z' status: code: 200 message: OK @@ -124,23 +124,23 @@ interactions: ParameterSetName: - -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.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?api-version=2026-01-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-03-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:59.6682934+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:25:11.4696415+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:11.4696818+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:03.9333646+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:16.3789386+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:16.378983+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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: - - '1677' + - '1676' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:12 GMT + - Fri, 10 Apr 2026 22:33:20 GMT expires: - '-1' pragma: @@ -156,7 +156,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 83185445FFF04C3981BCF9B86528B395 Ref B: BY1AA1072320031 Ref C: 2026-03-24T01:25:12Z' + - 'Ref A: 12AA6577A80A460795F056EC004DBBD5 Ref B: BN1AA2051013029 Ref C: 2026-04-10T22:33:21Z' status: code: 200 message: OK @@ -174,23 +174,23 @@ interactions: ParameterSetName: - -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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:59.6682934+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:25:11.4696415+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:11.4696818+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:03.9333646+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:16.3789386+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:16.378983+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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: - - '1665' + - '1664' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:12 GMT + - Fri, 10 Apr 2026 22:33:23 GMT expires: - '-1' pragma: @@ -204,7 +204,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A63B2A1A64834A59982614B885D055EB Ref B: BY1AA1072319025 Ref C: 2026-03-24T01:25:12Z' + - 'Ref A: 6971537347A64C639327B100FA329AE4 Ref B: BN1AA2051014009 Ref C: 2026-04-10T22:33:22Z' status: code: 200 message: OK @@ -222,23 +222,23 @@ interactions: ParameterSetName: - -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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:59.6682934+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:25:11.4696415+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:11.4696818+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:03.9333646+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:16.3789386+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:16.378983+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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: - - '1665' + - '1664' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:13 GMT + - Fri, 10 Apr 2026 22:33:25 GMT expires: - '-1' pragma: @@ -252,7 +252,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8440C0638A834457B7B0D3AF78D30ACC Ref B: SJC211051203051 Ref C: 2026-03-24T01:25:12Z' + - 'Ref A: B34A3CA04A8646AB80614F22B80B9B2F Ref B: BN1AA2051014049 Ref C: 2026-04-10T22:33:25Z' status: code: 200 message: OK @@ -270,7 +270,7 @@ interactions: ParameterSetName: - -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.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/clireg000002/listUsages?api-version=2026-01-01-preview response: @@ -286,7 +286,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:13 GMT + - Fri, 10 Apr 2026 22:33:28 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=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/5086c42f-5801-4ae5-8ede-44f6cef84f48 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/4bd1047a-ae54-4748-a73d-e79da5f7a566 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2EBC5710D901475195A3D0CB009DC36D Ref B: SJC211051204053 Ref C: 2026-03-24T01:25:13Z' + - 'Ref A: B955746AC4E846B8BF2E2C1C6B9E06C9 Ref B: BN1AA2051015021 Ref C: 2026-04-10T22:33:28Z' status: code: 200 message: OK @@ -320,23 +320,23 @@ interactions: ParameterSetName: - -n -g --tags --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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:24:59.6682934+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:25:11.4696415+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:11.4696818+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:03.9333646+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:16.3789386+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:16.378983+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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: - - '1665' + - '1664' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:13 GMT + - Fri, 10 Apr 2026 22:33:30 GMT expires: - '-1' pragma: @@ -350,7 +350,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A82D47EDED6A420DBE72844B6A8E8C68 Ref B: SJC211051205023 Ref C: 2026-03-24T01:25:13Z' + - 'Ref A: 4C995EDDDEDF4F4AB9DD69A98C8C2E51 Ref B: BN1AA2051014033 Ref C: 2026-04-10T22:33:30Z' status: code: 200 message: OK @@ -373,23 +373,23 @@ interactions: ParameterSetName: - -n -g --tags --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.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:14.3604749+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:25:11.4696415+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:11.4696818+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:16.3789386+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:16.378983+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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: - - '1684' + - '1682' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:14 GMT + - Fri, 10 Apr 2026 22:33:33 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=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d15e15d0-85e3-4ace-9801-e90e75024adf + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/3bf03325-e992-4769-8e7a-40035ceddacd x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 99FAC6380A57480E8BFD21A968B5C427 Ref B: BY1AA1072319042 Ref C: 2026-03-24T01:25:14Z' + - 'Ref A: D6FB450EC9B343B4889DDED35507347C Ref B: BN1AA2051015029 Ref C: 2026-04-10T22:33:33Z' status: code: 200 message: OK @@ -425,21 +425,22 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - 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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:24:59.6682934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:14.3604749Z"}}]}' + 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":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:21.3308144Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","name":"clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:34.2977689Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8202' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:14 GMT + - Fri, 10 Apr 2026 22:33:35 GMT expires: - '-1' pragma: @@ -453,7 +454,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A48919CAD04A45EE99DF6098A6218B8D Ref B: BY1AA1072318062 Ref C: 2026-03-24T01:25:14Z' + - 'Ref A: E91DBF081BB04B21B20882C0A8C42F02 Ref B: BN1AA2051013023 Ref C: 2026-04-10T22:33:36Z' status: code: 200 message: OK @@ -471,23 +472,23 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - 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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:14.3604749+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:25:11.4696415+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:11.4696818+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:16.3789386+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:16.378983+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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: - - '1684' + - '1682' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:14 GMT + - Fri, 10 Apr 2026 22:33:38 GMT expires: - '-1' pragma: @@ -501,7 +502,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 23E724E02F6F4422A7EE78D2C110E3FE Ref B: BY1AA1072318029 Ref C: 2026-03-24T01:25:14Z' + - 'Ref A: 57AA7AA95C9A40EA804AAF4C1E0842FB Ref B: BN1AA2051012023 Ref C: 2026-04-10T22:33:38Z' status: code: 200 message: OK @@ -526,12 +527,12 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:15.2540559+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:15.2938572+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:15.2939204+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:41.1552231+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:33:41.2358066+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:41.2358742+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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 @@ -542,7 +543,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:15 GMT + - Fri, 10 Apr 2026 22:33:41 GMT expires: - '-1' pragma: @@ -554,13 +555,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/edf86f74-de1e-48b4-9ca9-a1cbf2756931 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/d22d1af6-2bbd-47ea-a8aa-31390606bd53 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 21701D9BFC8143F1A07E07DB9C94F843 Ref B: BY1AA1072320054 Ref C: 2026-03-24T01:25:15Z' + - 'Ref A: 0CD6D46E4F4B4C0393585A1B164DF350 Ref B: BN1AA2051015023 Ref C: 2026-04-10T22:33:40Z' status: code: 200 message: OK @@ -578,21 +579,22 @@ 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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:24:59.6682934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:14.3604749Z"}}]}' + 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":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","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-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","name":"clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:34.2977689Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8222' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:15 GMT + - Fri, 10 Apr 2026 22:33:45 GMT expires: - '-1' pragma: @@ -606,7 +608,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5FC64EABE87E434CA9CAFD26ED3634DC Ref B: BY1AA1072320029 Ref C: 2026-03-24T01:25:15Z' + - 'Ref A: B5A029855AF44DDB940BD756AEB5FB09 Ref B: BN1AA2051015053 Ref C: 2026-04-10T22:33:45Z' status: code: 200 message: OK @@ -624,12 +626,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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:15.2540559+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:15.2938572+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:15.2939204+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:41.1552231+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:33:41.2358066+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:41.2358742+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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 @@ -640,7 +642,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:15 GMT + - Fri, 10 Apr 2026 22:33:47 GMT expires: - '-1' pragma: @@ -654,7 +656,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 0116934B4F434695AB333C4457DEE4A6 Ref B: BY1AA1072315029 Ref C: 2026-03-24T01:25:15Z' + - 'Ref A: 0897A9AEFAF5417A811A435FAEF59201 Ref B: BN1AA2051015021 Ref C: 2026-04-10T22:33:47Z' status: code: 200 message: OK @@ -670,23 +672,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n --status + - -n --status --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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:24:59.6682934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:14.3604749Z"}}]}' + 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":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","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-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","name":"clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:34.2977689Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8222' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:15 GMT + - Fri, 10 Apr 2026 22:33:49 GMT expires: - '-1' pragma: @@ -700,7 +703,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 30B188BD17EA46F9A39967E73F1D21E4 Ref B: BY1AA1072317029 Ref C: 2026-03-24T01:25:15Z' + - 'Ref A: F5CB86FC081C4130A28A4A9CC95CD7D0 Ref B: BN1AA2051013031 Ref C: 2026-04-10T22:33:50Z' status: code: 200 message: OK @@ -716,14 +719,14 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n --status + - -n --status --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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:15.2540559+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:15.2938572+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:15.2939204+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:41.1552231+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:33:41.2358066+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:41.2358742+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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 @@ -734,7 +737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:15 GMT + - Fri, 10 Apr 2026 22:33:52 GMT expires: - '-1' pragma: @@ -748,14 +751,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 652B85F64EA746C884F386A8983CE8C9 Ref B: BY1AA1072317034 Ref C: 2026-03-24T01:25:16Z' + - 'Ref A: 1064AA31A9C142F187A96E66E846D64B Ref B: BN1AA2051015035 Ref C: 2026-04-10T22:33:52Z' status: code: 200 message: OK - request: body: '{"properties": {"policies": {"quarantinePolicy": {"status": "disabled"}, - "trustPolicy": {"type": "Notary", "status": "enabled"}, "retentionPolicy": {"days": - 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}}}' headers: Accept: @@ -767,29 +770,29 @@ interactions: Connection: - keep-alive Content-Length: - - '346' + - '347' Content-Type: - application/json ParameterSetName: - - -n --status + - -n --status --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.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:16.8706398+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:16.9053348+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:16.9054241+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:55.4271862+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:33:55.4623809+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:55.4624374+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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: - - '1683' + - '1684' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:16 GMT + - Fri, 10 Apr 2026 22:33:54 GMT expires: - '-1' pragma: @@ -801,13 +804,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/5c9dc079-f7c0-42f2-9ce0-47ae3a8823b9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/c17a2a6b-c301-4ad8-82e0-f52af2cb1e11 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: BC1EA4DB74F747D4A0AA8033549EEA62 Ref B: SJC211051205045 Ref C: 2026-03-24T01:25:16Z' + - 'Ref A: BB39DD59EA204BEA876606227FAB98CA Ref B: BN1AA2051012053 Ref C: 2026-04-10T22:33:55Z' status: code: 200 message: OK @@ -825,21 +828,22 @@ interactions: ParameterSetName: - -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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:24:59.6682934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:14.3604749Z"}}]}' + 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":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","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-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","name":"clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","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-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8242' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:17 GMT + - Fri, 10 Apr 2026 22:33:57 GMT expires: - '-1' pragma: @@ -853,7 +857,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 4DA1BFBA52614060A2BAEEB152F3B4DD Ref B: BY1AA1072319031 Ref C: 2026-03-24T01:25:17Z' + - 'Ref A: 6031AD6042EA4652B683904AF9FE5AEE Ref B: BN1AA2051013031 Ref C: 2026-04-10T22:33:58Z' status: code: 200 message: OK @@ -871,23 +875,23 @@ interactions: ParameterSetName: - -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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:16.8706398+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:16.9053348+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:16.9054241+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:55.4271862+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:33:55.4623809+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:55.4624374+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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: - - '1683' + - '1684' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:17 GMT + - Fri, 10 Apr 2026 22:34:00 GMT expires: - '-1' pragma: @@ -901,7 +905,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 38503637BAD34217A035EEF71A34C0AD Ref B: BY1AA1072318031 Ref C: 2026-03-24T01:25:17Z' + - 'Ref A: C806E4E57D834CB8AA7DCD7AEE83035D Ref B: BN1AA2051013031 Ref C: 2026-04-10T22:34:00Z' status: code: 200 message: OK @@ -919,21 +923,22 @@ interactions: ParameterSetName: - -r --status --days --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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:24:59.6682934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:14.3604749Z"}}]}' + 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":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","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-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","name":"clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","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-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8242' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:16 GMT + - Fri, 10 Apr 2026 22:34:03 GMT expires: - '-1' pragma: @@ -947,7 +952,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9F576F6429044565AF4812E1F1F60B1B Ref B: SJC211051201027 Ref C: 2026-03-24T01:25:17Z' + - 'Ref A: 0CE64F35DD61417187C5E023AB3BF47E Ref B: BN1AA2051015047 Ref C: 2026-04-10T22:34:03Z' status: code: 200 message: OK @@ -965,23 +970,23 @@ interactions: ParameterSetName: - -r --status --days --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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:16.8706398+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:16.9053348+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:16.9054241+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:55.4271862+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:33:55.4623809+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:55.4624374+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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: - - '1683' + - '1684' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:17 GMT + - Fri, 10 Apr 2026 22:34:06 GMT expires: - '-1' pragma: @@ -995,14 +1000,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 366AE5B457524FCEA7B4213C0A6B47A6 Ref B: BY1AA1072316040 Ref C: 2026-03-24T01:25:17Z' + - 'Ref A: 3A9D73BFF5934862B3D494B272D99BC1 Ref B: BN1AA2051013053 Ref C: 2026-04-10T22:34:06Z' status: code: 200 message: OK - request: body: '{"properties": {"policies": {"quarantinePolicy": {"status": "disabled"}, - "trustPolicy": {"type": "Notary", "status": "enabled"}, "retentionPolicy": {"days": - 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 30, "status": "enabled"}}}}' headers: Accept: @@ -1014,29 +1019,29 @@ interactions: Connection: - keep-alive Content-Length: - - '346' + - '347' Content-Type: - application/json ParameterSetName: - -r --status --days --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.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:18.0736142+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:18.1205864+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-03-24T01:25:18.1206357+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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:09.7190388+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:09.8017749+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-04-10T22:34:09.8018264+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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1683' + - '1684' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:18 GMT + - Fri, 10 Apr 2026 22:34:09 GMT expires: - '-1' pragma: @@ -1048,13 +1053,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/3f4f3939-14cc-42c0-96dd-55033684a3da + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/7a54a46e-7fcb-4502-b2b8-87f2c5e913dc x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: F9D4DE5E24894569ADDFFF8DE7E3EFF1 Ref B: BY1AA1072319042 Ref C: 2026-03-24T01:25:17Z' + - 'Ref A: 900EBC71A2724CD283A52653508006FF Ref B: BN1AA2051013029 Ref C: 2026-04-10T22:34:09Z' status: code: 200 message: OK @@ -1072,21 +1077,22 @@ 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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:24:59.6682934Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:14.3604749Z"}}]}' + 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":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","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-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","name":"clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","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-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8242' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:17 GMT + - Fri, 10 Apr 2026 22:34:11 GMT expires: - '-1' pragma: @@ -1100,7 +1106,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3F90D2033085410E98ED390BB1FCA6F2 Ref B: SJC211051204017 Ref C: 2026-03-24T01:25:18Z' + - 'Ref A: 1B76617D3AC14DC2A705633DF402E6C5 Ref B: BN1AA2051012027 Ref C: 2026-04-10T22:34:12Z' status: code: 200 message: OK @@ -1118,23 +1124,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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:18.0736142+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:18.1205864+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-03-24T01:25:18.1206357+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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:09.7190388+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:09.8017749+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-04-10T22:34:09.8018264+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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1683' + - '1684' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:18 GMT + - Fri, 10 Apr 2026 22:34:15 GMT expires: - '-1' pragma: @@ -1148,7 +1154,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A69D37012206407F81CE16D8E4C2E4B7 Ref B: BY1AA1072320034 Ref C: 2026-03-24T01:25:18Z' + - 'Ref A: 6A8156144EAC4DEBB6827CB99A0EC152 Ref B: BN1AA2051013021 Ref C: 2026-04-10T22:34:15Z' status: code: 200 message: OK @@ -1166,23 +1172,23 @@ interactions: ParameterSetName: - -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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:18.0736142+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:18.1205864+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-03-24T01:25:18.1206357+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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:09.7190388+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:09.8017749+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-04-10T22:34:09.8018264+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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1683' + - '1684' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:18 GMT + - Fri, 10 Apr 2026 22:34:17 GMT expires: - '-1' pragma: @@ -1196,7 +1202,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 85DD915580C7448681892DE43FAAAE90 Ref B: SJC211051201029 Ref C: 2026-03-24T01:25:19Z' + - 'Ref A: 3FA5C53938A9473786926C22304D6F00 Ref B: BN1AA2051013035 Ref C: 2026-04-10T22:34:17Z' status: code: 200 message: OK @@ -1216,12 +1222,12 @@ interactions: ParameterSetName: - -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.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/clireg000002/listCredentials?api-version=2026-01-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"BOMKt9wg7iSWHh9U4mM4vSv3XGAfjjDllqcoAUxVjoREFn1oX2Q9JQQJ99CDAC4f1cMEqg7NAAACAZCRpbpx"},{"name":"password2","value":"6dco23IHw6DHdNUBfz5tPZ1EdDkIEGB9eL2q1PgZKMC7tnSmLzdiJQQJ99CDAC4f1cMEqg7NAAACAZCRQnL1"}]}' headers: api-supported-versions: - 2026-01-01-preview @@ -1232,7 +1238,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:18 GMT + - Fri, 10 Apr 2026 22:34:20 GMT expires: - '-1' pragma: @@ -1244,13 +1250,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/1cab6773-8d32-4cdd-bdf2-d96edbd35892 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/9e2c99c6-43e4-4091-aead-56f6f5b348b2 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 9A7297C7904547658143882AA3E39734 Ref B: BY1AA1072317031 Ref C: 2026-03-24T01:25:19Z' + - 'Ref A: F22D938905AD42FD88DDC3EABAE56DB1 Ref B: BN1AA2051013025 Ref C: 2026-04-10T22:34:20Z' status: code: 200 message: OK @@ -1270,27 +1276,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.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (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?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:24:59.6682934+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:18.0736142+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:24:59.6682934Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:18.1205864+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-03-24T01:25:18.1206357+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-04-10T22:33:03.9333646+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:09.7190388+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:03.9333646Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:09.8017749+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-04-10T22:34:09.8018264+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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1682' + - '1683' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:19 GMT + - Fri, 10 Apr 2026 22:34:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-520e1a10-2720-11f1-9a9a-70a8a51b6037?api-version=2026-01-01-preview&t=639099123202565163&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=bXjMPcOKCVYVRqOpfd998NGTryhhQr-JucUhVTFgb3n0M7HO2PHqSNt3LKQjZT6103KA3FvzlnDUQG8t6zOCAMeM8K8UsrT_t94UbP3R9Nx3hQ7XMBqZmfpVNbMgOr_tXAX4fLucQFd3w-v1MSO3Gx4di1wP3JGGzJ9QT7bvOjlgzIKXQEcOXRD2MBceyctR9RRgRSb9rIfn5VeHaZsYrNQp-r8-ilnK_cHmjQDzKUuQo_W3N5hpnaRRTTJZh5UIGZZNf6--RoYN30f1K4gKx3iYBmuNawymKjnj0rnQHZ9FRnLG3u7Bc9KpZApy6256AHt3P0L2ag8mPcTGWykirg&h=XAqyFSLWnppCDsqqediefbI7AHLmI4uPGCKFK5ePQHQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-6f08b06c-352d-11f1-b48b-44a3bbbaa7c4?api-version=2026-01-01-preview&t=639114572634148715&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=qhvar8zPCkV9bFfZzMGcHTx1gOWPfbkCl60cx_rIQI9NMYVFXdCzbILOHiT1iHClcPAR2dVSQL_8sHRH3S0-_qrP11miGVWG76CsXCun0xkm2NJ66bKYoF54au5KVYKgSYAyvDaxAsV4iGI6sOgmlrr8HWRnYsLpwN9BnMgHYTdt-CsgHNTzslJtBGH65L2iGQGmD-X7_-ImmqO5eFfhhq2A27xTlrlzlzGRqzhzjzPLGbhL9pY_b6Ji9utXcyNrx8JZd3f_Z3dPf5AL1VB7E0U20rnVhvs1z4ibuluKLbZ4M4vcAiowHkx_gyNQUWBgM8z2y0gc7KIT5LAq8wC1GQ&h=DIz9e5HY3gMnZsx5hG-PsQFNKq16tXuzVe41EWel2Xg pragma: - no-cache strict-transport-security: @@ -1300,13 +1306,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/9650ee8c-3780-47b4-a831-8e4270e7bce7 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/5ad0b218-bd69-417f-afa0-c84f4bb3250a x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 6CD85F6075A04FCAB60356BE0005A565 Ref B: BY1AA1072318040 Ref C: 2026-03-24T01:25:19Z' + - 'Ref A: 2593222863BA43BB8501249FE231C3BF Ref B: BN1AA2051013011 Ref C: 2026-04-10T22:34:22Z' status: code: 202 message: Accepted @@ -1324,9 +1330,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.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/westus/operationResults/registries-520e1a10-2720-11f1-9a9a-70a8a51b6037?api-version=2026-01-01-preview&t=639099123202565163&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=bXjMPcOKCVYVRqOpfd998NGTryhhQr-JucUhVTFgb3n0M7HO2PHqSNt3LKQjZT6103KA3FvzlnDUQG8t6zOCAMeM8K8UsrT_t94UbP3R9Nx3hQ7XMBqZmfpVNbMgOr_tXAX4fLucQFd3w-v1MSO3Gx4di1wP3JGGzJ9QT7bvOjlgzIKXQEcOXRD2MBceyctR9RRgRSb9rIfn5VeHaZsYrNQp-r8-ilnK_cHmjQDzKUuQo_W3N5hpnaRRTTJZh5UIGZZNf6--RoYN30f1K4gKx3iYBmuNawymKjnj0rnQHZ9FRnLG3u7Bc9KpZApy6256AHt3P0L2ag8mPcTGWykirg&h=XAqyFSLWnppCDsqqediefbI7AHLmI4uPGCKFK5ePQHQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-6f08b06c-352d-11f1-b48b-44a3bbbaa7c4?api-version=2026-01-01-preview&t=639114572634148715&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=qhvar8zPCkV9bFfZzMGcHTx1gOWPfbkCl60cx_rIQI9NMYVFXdCzbILOHiT1iHClcPAR2dVSQL_8sHRH3S0-_qrP11miGVWG76CsXCun0xkm2NJ66bKYoF54au5KVYKgSYAyvDaxAsV4iGI6sOgmlrr8HWRnYsLpwN9BnMgHYTdt-CsgHNTzslJtBGH65L2iGQGmD-X7_-ImmqO5eFfhhq2A27xTlrlzlzGRqzhzjzPLGbhL9pY_b6Ji9utXcyNrx8JZd3f_Z3dPf5AL1VB7E0U20rnVhvs1z4ibuluKLbZ4M4vcAiowHkx_gyNQUWBgM8z2y0gc7KIT5LAq8wC1GQ&h=DIz9e5HY3gMnZsx5hG-PsQFNKq16tXuzVe41EWel2Xg response: body: string: '' @@ -1336,11 +1342,11 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 01:25:20 GMT + - Fri, 10 Apr 2026 22:34:24 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-520e1a10-2720-11f1-9a9a-70a8a51b6037?api-version=2026-01-01-preview&t=639099123205324282&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=dl2twbXZSikIFmRyK-pkomY0xGb4yYh5Aw1sQQrz6nbBHYJ_jercaN13oRXoXHrqY_iSZcPfi8p7NRyR_C8brA0SQM_sHGVhiyNfQehnUtVzt_LRV4TgLz7VSmbk6Ck_OtpC3AK6LucYx4cUPxIlSm2htLURKJgB7-_dzWRfuYexQfnDzWWWPzKM5vbGqVtf3VUpFblETJIlqu4lCCtzj03OTA2j3qSrF-gMCohZ-wOpA4-gi2xkCKEwY0lAae9-DrvEMhDmnJd1juljBY8zZ5jZbIoxJZsZEpXqcFGI3NpCkDRuqkqo1G5HZ4qdJkmCHbu5ALYZMI9RXRHBncMb_w&h=6pQDSjp_00Mg91Kggz3NfgsGyJWPVPAKyJoGVN0xApw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-6f08b06c-352d-11f1-b48b-44a3bbbaa7c4?api-version=2026-01-01-preview&t=639114572656939860&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=ap6jC5bAgNfuc-PGRlTc0znnVAb3dYHWK6keXJbbbDGMktQf3YXilK726KyzPzsxV2RUHQqLqyrKtICJa_GZdDSN8VyXWffNj7CW8b_rtqabJs0MdxQFkXYG1Fk-bk7Ivs1t3WTl0Uwm0Dmz6zuv2e9oK6YsyDn1oNVnT-1jM_OOIwlYnVQfJuSoiGF_mIQiriHKNUVfVPQwZzuUO3F8q03Vndm01cJtvtj8myGKaI0EWb-YsI1Aeg9-RprDBNWXQzNxcszkeFRSu9yT9VriHkaMB_7Bqa_pi5jxyT9zCqT9xbx1WjP5qpxYWEiN8XhqJSbHddeGJijwgrJA_NyDmA&h=eiD6URFrClT4oijTbB_wSXLAoeEhlyvaBD8bjKqOobY pragma: - no-cache strict-transport-security: @@ -1350,11 +1356,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/513b6bf9-fa13-4655-8025-129003abb17e + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/bffb8ecb-8e05-4fdb-98d0-8f2de7d431fa x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 5BF10D869AF147F3BD2BCEEB4A0FA14C Ref B: BY1AA1072320031 Ref C: 2026-03-24T01:25:20Z' + - 'Ref A: E858356304974F4EBCDC31CFDF772513 Ref B: BN1AA2051013033 Ref C: 2026-04-10T22:34:25Z' status: code: 202 message: Accepted @@ -1372,9 +1378,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.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/westus/operationResults/registries-520e1a10-2720-11f1-9a9a-70a8a51b6037?api-version=2026-01-01-preview&t=639099123205324282&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=dl2twbXZSikIFmRyK-pkomY0xGb4yYh5Aw1sQQrz6nbBHYJ_jercaN13oRXoXHrqY_iSZcPfi8p7NRyR_C8brA0SQM_sHGVhiyNfQehnUtVzt_LRV4TgLz7VSmbk6Ck_OtpC3AK6LucYx4cUPxIlSm2htLURKJgB7-_dzWRfuYexQfnDzWWWPzKM5vbGqVtf3VUpFblETJIlqu4lCCtzj03OTA2j3qSrF-gMCohZ-wOpA4-gi2xkCKEwY0lAae9-DrvEMhDmnJd1juljBY8zZ5jZbIoxJZsZEpXqcFGI3NpCkDRuqkqo1G5HZ4qdJkmCHbu5ALYZMI9RXRHBncMb_w&h=6pQDSjp_00Mg91Kggz3NfgsGyJWPVPAKyJoGVN0xApw + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-6f08b06c-352d-11f1-b48b-44a3bbbaa7c4?api-version=2026-01-01-preview&t=639114572656939860&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=ap6jC5bAgNfuc-PGRlTc0znnVAb3dYHWK6keXJbbbDGMktQf3YXilK726KyzPzsxV2RUHQqLqyrKtICJa_GZdDSN8VyXWffNj7CW8b_rtqabJs0MdxQFkXYG1Fk-bk7Ivs1t3WTl0Uwm0Dmz6zuv2e9oK6YsyDn1oNVnT-1jM_OOIwlYnVQfJuSoiGF_mIQiriHKNUVfVPQwZzuUO3F8q03Vndm01cJtvtj8myGKaI0EWb-YsI1Aeg9-RprDBNWXQzNxcszkeFRSu9yT9VriHkaMB_7Bqa_pi5jxyT9zCqT9xbx1WjP5qpxYWEiN8XhqJSbHddeGJijwgrJA_NyDmA&h=eiD6URFrClT4oijTbB_wSXLAoeEhlyvaBD8bjKqOobY response: body: string: '' @@ -1384,7 +1390,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 01:25:30 GMT + - Fri, 10 Apr 2026 22:34:37 GMT expires: - '-1' pragma: @@ -1396,11 +1402,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/0e94a29f-ba6d-400f-8309-2ba2f719d5dc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/32d1be1e-107d-4be1-a92a-48681d231777 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FC81B003EFEB44D7B2C293DED738AAD2 Ref B: BY1AA1072317040 Ref C: 2026-03-24T01:25:30Z' + - 'Ref A: 990C01437CAC41939E8522B00AB58085 Ref B: BN1AA2051012033 Ref C: 2026-04-10T22:34:37Z' 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 d1dae855bf9..f830f83da95 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,12 +18,12 @@ 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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:32.6364076+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572412+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572823+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:04.3370362+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:16.6756636+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:16.6757212+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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 @@ -34,7 +34,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:43 GMT + - Fri, 10 Apr 2026 22:33: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=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/471fd3b3-2ac3-4b62-a21c-05c841fbcbad + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/dd1f0627-9f52-4635-a6cc-ed032541cdd0 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: FD9C234A4D414C9BBEBE64C4F82C4704 Ref B: BY1AA1072316029 Ref C: 2026-03-24T01:25:32Z' + - 'Ref A: E909CD50349F468CAE3F7C6D23CC4FF0 Ref B: BN1AA2051015009 Ref C: 2026-04-10T22:33:03Z' status: code: 200 message: OK @@ -70,12 +70,12 @@ interactions: ParameterSetName: - -n -g --sku --allow-metadata-search User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - 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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:32.6364076+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572412+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572823+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:04.3370362+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:16.6756636+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:16.6757212+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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 @@ -86,7 +86,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:44 GMT + - Fri, 10 Apr 2026 22:33:18 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9D71D5F9D6F845C1836644FA1FABC118 Ref B: BY1AA1072320036 Ref C: 2026-03-24T01:25:44Z' + - 'Ref A: 6E5DF6EC3CCF46ED9D8987209EBD42EF Ref B: BN1AA2051012023 Ref C: 2026-04-10T22:33:18Z' status: code: 200 message: OK @@ -122,12 +122,12 @@ interactions: ParameterSetName: - -n -g --sku --allow-metadata-search User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:45.2293096+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572412+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572823+00:00","status":"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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:21.3308144+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:16.6756636+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:16.6757212+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -138,7 +138,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:45 GMT + - Fri, 10 Apr 2026 22:33:20 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=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/fb853f5f-1bfa-4fd3-a839-1262dc412bb0 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/51a2b703-7918-44a0-a538-059b97085355 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 4EFDF1C05F1E49EDBE9C423CF73A8754 Ref B: BY1AA1072319052 Ref C: 2026-03-24T01:25:44Z' + - 'Ref A: 9F81511B5BA44C25BF7A5B48E5F9B85A Ref B: BN1AA2051012029 Ref C: 2026-04-10T22:33:20Z' status: code: 200 message: OK @@ -179,7 +179,7 @@ interactions: ParameterSetName: - -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.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/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-01-01-preview response: @@ -194,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:45 GMT + - Fri, 10 Apr 2026 22:33:23 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/westus2/4e8993cd-0f69-4121-a0cb-4e4563962cf6 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/193aa481-f0cb-4887-973e-f63728f5982c x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 788FB3E7DB3A448299ABC36B6228C28A Ref B: SJC211051201009 Ref C: 2026-03-24T01:25:45Z' + - 'Ref A: F2EB8B05E0BE466CA8470DFA05BBC44F Ref B: BN1AA2051013035 Ref C: 2026-04-10T22:33:23Z' status: code: 200 message: OK @@ -228,12 +228,12 @@ interactions: ParameterSetName: - -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.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?api-version=2026-01-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-03-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:45.2293096+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572412+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572823+00:00","status":"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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:21.3308144+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:16.6756636+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:16.6757212+00:00","status":"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"}}]}' headers: api-supported-versions: - 2026-01-01-preview @@ -244,7 +244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:45 GMT + - Fri, 10 Apr 2026 22:33:26 GMT expires: - '-1' pragma: @@ -260,7 +260,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: EB8B845A55614FA7A21F036857DAAB74 Ref B: SJC211051201049 Ref C: 2026-03-24T01:25:46Z' + - 'Ref A: C6C386ADF57E47F0A9527397926B9280 Ref B: BN1AA2051013037 Ref C: 2026-04-10T22:33:27Z' status: code: 200 message: OK @@ -278,12 +278,12 @@ interactions: ParameterSetName: - -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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:45.2293096+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572412+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572823+00:00","status":"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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:21.3308144+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:16.6756636+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:16.6757212+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -294,7 +294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:46 GMT + - Fri, 10 Apr 2026 22:33:28 GMT expires: - '-1' pragma: @@ -308,7 +308,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 875260FEC8C447B6BCD02AF32CE7AAC7 Ref B: SJC211051203039 Ref C: 2026-03-24T01:25:46Z' + - 'Ref A: 66148660EF8347DDA89F34F12AFEB5AA Ref B: BN1AA2051012053 Ref C: 2026-04-10T22:33:29Z' status: code: 200 message: OK @@ -326,12 +326,12 @@ interactions: ParameterSetName: - -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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:45.2293096+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572412+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572823+00:00","status":"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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:21.3308144+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:16.6756636+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:16.6757212+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -342,7 +342,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:46 GMT + - Fri, 10 Apr 2026 22:33:32 GMT expires: - '-1' pragma: @@ -356,7 +356,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B582A023031B4A7AACFF66E6E3285903 Ref B: BY1AA1072316036 Ref C: 2026-03-24T01:25:46Z' + - 'Ref A: 0F6D2D6C7E9D4BB0A77E7D49AA0A733A Ref B: BN1AA2051014021 Ref C: 2026-04-10T22:33:31Z' status: code: 200 message: OK @@ -374,7 +374,7 @@ interactions: ParameterSetName: - -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.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/clireg000002/listUsages?api-version=2026-01-01-preview response: @@ -390,7 +390,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:47 GMT + - Fri, 10 Apr 2026 22:33:34 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=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/2789b922-b745-4297-887b-3a48b786ae43 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/1dad9433-9efe-49f8-aa7e-7ce20b584266 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 061B32EA6FFA45C9A23F522797F0CA42 Ref B: SJC211051201019 Ref C: 2026-03-24T01:25:46Z' + - 'Ref A: BB9726A35DBC43FA9EB1C2A9A008D0FC Ref B: BN1AA2051014021 Ref C: 2026-04-10T22:33:34Z' status: code: 200 message: OK @@ -424,12 +424,12 @@ interactions: ParameterSetName: - -n -g --tags --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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:45.2293096+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572412+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572823+00:00","status":"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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:21.3308144+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:16.6756636+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:16.6757212+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -440,7 +440,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:47 GMT + - Fri, 10 Apr 2026 22:33:36 GMT expires: - '-1' pragma: @@ -454,7 +454,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A6D7BDC092ED4893AAF8D4EBD0B381DC Ref B: SJC211051201011 Ref C: 2026-03-24T01:25:48Z' + - 'Ref A: 18AB3A11F97843789C6DEB1254A8EDD5 Ref B: BN1AA2051012033 Ref C: 2026-04-10T22:33:37Z' status: code: 200 message: OK @@ -477,12 +477,12 @@ interactions: ParameterSetName: - -n -g --tags --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.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:49.3069805+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572412+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572823+00:00","status":"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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:16.6756636+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:16.6757212+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -493,7 +493,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:49 GMT + - Fri, 10 Apr 2026 22:33:38 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=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/d9f8f53c-8867-4ca9-92fe-56363c5e9ffc + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/c79aa2ec-a1c5-49c3-a0b4-db8eb4b2ee1d x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: E5A81D221F284119AF340F2F9202C13E Ref B: BY1AA1072318031 Ref C: 2026-03-24T01:25:48Z' + - 'Ref A: 7C5AB248075D4DFB910B7054DD53DFF0 Ref B: BN1AA2051014037 Ref C: 2026-04-10T22:33:39Z' status: code: 200 message: OK @@ -529,21 +529,22 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - 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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:25:32.6364076Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:49.3069805Z"}}]}' + string: '{"value":[{"name":"zoeydct0922","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoey_dct_rg/providers/Microsoft.ContainerRegistry/registries/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"}},{"name":"zoeytestacr0402","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeytestrg/providers/Microsoft.ContainerRegistry/registries/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"}},{"name":"zoeycr","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/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"}},{"name":"zoeylocalcr","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeycrrg/providers/Microsoft.ContainerRegistry/registries/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"}},{"name":"zoeytestkrs","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/zoeylirg/providers/Microsoft.ContainerRegistry/registries/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"}},{"name":"sourceregistrysamesubtlooq6fpioky74bs2un","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/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"}},{"name":"sourceregistrysamesubukkys6mhexcveowosic","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/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"}},{"name":"sourceregistrysamesubuvvbznkjfl5ivvh62gd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/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"}},{"name":"sourceregistrysamesubtj7gv5vm3rgmbcm4ap3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/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"}},{"name":"cliregap3ivdecpytred","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"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-04-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"name":"clireg5ojuqscqastasx","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"name":"cliregx5zub672jrswi4","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:34.2977689Z"}},{"name":"zoeycr0707","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/MyRG/providers/Microsoft.ContainerRegistry/registries/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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8222' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:49 GMT + - Fri, 10 Apr 2026 22:33:41 GMT expires: - '-1' pragma: @@ -557,7 +558,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 75B17FF89EB54C7984E455C758081F9B Ref B: BY1AA1072315062 Ref C: 2026-03-24T01:25:50Z' + - 'Ref A: D925529BF5424842A914894E74581DCE Ref B: BN1AA2051012033 Ref C: 2026-04-10T22:33:42Z' status: code: 200 message: OK @@ -575,12 +576,12 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - 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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:49.3069805+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572412+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:44.4572823+00:00","status":"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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:16.6756636+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:16.6757212+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -591,7 +592,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:49 GMT + - Fri, 10 Apr 2026 22:33:44 GMT expires: - '-1' pragma: @@ -605,7 +606,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 25D5B6D347A44C44A337AA41177AEE16 Ref B: BY1AA1072318054 Ref C: 2026-03-24T01:25:50Z' + - 'Ref A: D3238113437E492D90FF863772DE262D Ref B: BN1AA2051014025 Ref C: 2026-04-10T22:33:44Z' status: code: 200 message: OK @@ -630,12 +631,12 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:50.7509819+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:50.7790723+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:50.7791325+00:00","status":"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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:47.4444495+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:33:47.5187918+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:47.5188622+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -646,7 +647,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:50 GMT + - Fri, 10 Apr 2026 22:33:46 GMT expires: - '-1' pragma: @@ -658,13 +659,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/17169f89-6487-493a-8c7d-f1c8db724dc2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/10537cf1-2975-49b6-ad73-5edfd86302a5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: CC8D4193CCF24F2BB6B6CED504C0D157 Ref B: SJC211051205027 Ref C: 2026-03-24T01:25:50Z' + - 'Ref A: 4745EC2B99224C2991067675335954A2 Ref B: BN1AA2051012019 Ref C: 2026-04-10T22:33:47Z' status: code: 200 message: OK @@ -682,21 +683,22 @@ 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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:25:32.6364076Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:49.3069805Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"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-04-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","name":"clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-04-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:34.2977689Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8222' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:50 GMT + - Fri, 10 Apr 2026 22:33:49 GMT expires: - '-1' pragma: @@ -710,7 +712,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: AB0352A533A8412F992A65D19BB5D9E7 Ref B: BY1AA1072320025 Ref C: 2026-03-24T01:25:51Z' + - 'Ref A: 089F41F722024EE8A860462F41584E46 Ref B: BN1AA2051012035 Ref C: 2026-04-10T22:33:50Z' status: code: 200 message: OK @@ -728,12 +730,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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:50.7509819+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:50.7790723+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:50.7791325+00:00","status":"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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:47.4444495+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:33:47.5187918+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:47.5188622+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -744,7 +746,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:51 GMT + - Fri, 10 Apr 2026 22:33:52 GMT expires: - '-1' pragma: @@ -758,7 +760,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9FC99B023915479FAA7003398319AD75 Ref B: SJC211051205039 Ref C: 2026-03-24T01:25:51Z' + - 'Ref A: 79ACC5194DC744DF8565C5B0A104C07E Ref B: BN1AA2051014021 Ref C: 2026-04-10T22:33:52Z' status: code: 200 message: OK @@ -774,23 +776,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n --status + - -n --status --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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:25:32.6364076Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:49.3069805Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"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-04-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","name":"clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","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-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8242' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:50 GMT + - Fri, 10 Apr 2026 22:33:54 GMT expires: - '-1' pragma: @@ -804,7 +807,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D4E3FD67938E4D1F8EB15F8C61912173 Ref B: BY1AA1072315029 Ref C: 2026-03-24T01:25:51Z' + - 'Ref A: F570FEE9760345C9B4B2650AB5926575 Ref B: BN1AA2051014017 Ref C: 2026-04-10T22:33:55Z' status: code: 200 message: OK @@ -820,14 +823,14 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n --status + - -n --status --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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:50.7509819+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:50.7790723+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:50.7791325+00:00","status":"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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:47.4444495+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:33:47.5187918+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:47.5188622+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -838,7 +841,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:51 GMT + - Fri, 10 Apr 2026 22:33:57 GMT expires: - '-1' pragma: @@ -852,14 +855,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 991C687A473B488AB3D8FAC475559F59 Ref B: BY1AA1072317029 Ref C: 2026-03-24T01:25:51Z' + - 'Ref A: 92682DE52D4D494DB6BFAAF6097FF107 Ref B: BN1AA2051014035 Ref C: 2026-04-10T22:33:58Z' status: code: 200 message: OK - request: body: '{"properties": {"policies": {"quarantinePolicy": {"status": "disabled"}, - "trustPolicy": {"type": "Notary", "status": "enabled"}, "retentionPolicy": {"days": - 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}}}' headers: Accept: @@ -871,18 +874,18 @@ interactions: Connection: - keep-alive Content-Length: - - '346' + - '347' Content-Type: - application/json ParameterSetName: - - -n --status + - -n --status --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.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:52.0257472+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:52.1095191+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:52.1095925+00:00","status":"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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:00.6895222+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:00.7532995+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:34:00.753361+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -893,7 +896,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:51 GMT + - Fri, 10 Apr 2026 22:34:00 GMT expires: - '-1' pragma: @@ -905,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/4f131be8-f9b9-41bf-8012-cea3f061043d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/5cf5dc7e-64d6-4402-b37a-6f0e21a6a6c0 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: B4928A47232B44C7AD61621EDC4D3C66 Ref B: BY1AA1072318034 Ref C: 2026-03-24T01:25:51Z' + - 'Ref A: C82CE03609C141CDAED7F7BFAA371B8A Ref B: BN1AA2051015039 Ref C: 2026-04-10T22:34:00Z' status: code: 200 message: OK @@ -929,21 +932,22 @@ interactions: ParameterSetName: - -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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:25:32.6364076Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:49.3069805Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"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-04-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","name":"clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","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-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8242' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:52 GMT + - Fri, 10 Apr 2026 22:34:03 GMT expires: - '-1' pragma: @@ -957,7 +961,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8D9A6064FE704FC893A3DA91A75DCADE Ref B: BY1AA1072319042 Ref C: 2026-03-24T01:25:52Z' + - 'Ref A: 756CDCF0DC0A4E82ABD43CA0E8F27E52 Ref B: BN1AA2051012049 Ref C: 2026-04-10T22:34:03Z' status: code: 200 message: OK @@ -975,12 +979,12 @@ interactions: ParameterSetName: - -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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:52.0257472+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:52.1095191+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:52.1095925+00:00","status":"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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:00.6895222+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:00.7532995+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:34:00.753361+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -991,7 +995,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:52 GMT + - Fri, 10 Apr 2026 22:34:06 GMT expires: - '-1' pragma: @@ -1005,7 +1009,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BBB66CB56C1A46DD82823ECA52DFFCF5 Ref B: SJC211051204031 Ref C: 2026-03-24T01:25:52Z' + - 'Ref A: 79498ACBE5FD46288FEC7C8D05FD260D Ref B: BN1AA2051015035 Ref C: 2026-04-10T22:34:05Z' status: code: 200 message: OK @@ -1023,21 +1027,22 @@ interactions: ParameterSetName: - -r --status --days --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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:25:32.6364076Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:49.3069805Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"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-04-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","name":"clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","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-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8242' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:52 GMT + - Fri, 10 Apr 2026 22:34:08 GMT expires: - '-1' pragma: @@ -1051,7 +1056,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7FB6D688D9F34F2CB1E836D6C1BC6119 Ref B: SJC211051204031 Ref C: 2026-03-24T01:25:52Z' + - 'Ref A: 16EF0F7E26E44FF2B4DC0099DC636F80 Ref B: BN1AA2051013039 Ref C: 2026-04-10T22:34:08Z' status: code: 200 message: OK @@ -1069,12 +1074,12 @@ interactions: ParameterSetName: - -r --status --days --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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:52.0257472+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:52.1095191+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:25:52.1095925+00:00","status":"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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:00.6895222+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:00.7532995+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:34:00.753361+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -1085,7 +1090,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:52 GMT + - Fri, 10 Apr 2026 22:34:11 GMT expires: - '-1' pragma: @@ -1099,14 +1104,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: C25EE72FE49C4B868BAB87CD28AE52CC Ref B: BY1AA1072318036 Ref C: 2026-03-24T01:25:53Z' + - 'Ref A: 549AF3714A1242F7938D075F83DCAD81 Ref B: BN1AA2051012031 Ref C: 2026-04-10T22:34:11Z' status: code: 200 message: OK - request: body: '{"properties": {"policies": {"quarantinePolicy": {"status": "disabled"}, - "trustPolicy": {"type": "Notary", "status": "enabled"}, "retentionPolicy": {"days": - 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 30, "status": "enabled"}}}}' headers: Accept: @@ -1118,29 +1123,29 @@ interactions: Connection: - keep-alive Content-Length: - - '346' + - '347' Content-Type: - application/json ParameterSetName: - -r --status --days --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.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:53.4726005+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:53.5018874+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-03-24T01:25:53.501942+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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:15.1928967+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:15.2636327+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-04-10T22:34:15.2637012+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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1681' + - '1683' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:52 GMT + - Fri, 10 Apr 2026 22:34:15 GMT expires: - '-1' pragma: @@ -1152,13 +1157,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/aed478cd-c72e-4847-8169-85c6d13545f9 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/116b0272-8dda-4157-b6a8-35f94cd9a370 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: FCCBC8AA7746474290ECF55E4B0EA075 Ref B: BY1AA1072318052 Ref C: 2026-03-24T01:25:53Z' + - 'Ref A: 2A89E07FD3AF4AA3A688C6FC083EF960 Ref B: BN1AA2051015031 Ref C: 2026-04-10T22:34:14Z' status: code: 200 message: OK @@ -1176,21 +1181,22 @@ 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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:25:32.6364076Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:49.3069805Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"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-04-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","name":"clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgeyqhezl4zn4qlaozakztjkaudnbpm2c5zepmqv4sp64mludw7ujten2wrz6ytne52/providers/Microsoft.ContainerRegistry/registries/cliregx5zub672jrswi4","name":"cliregx5zub672jrswi4","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-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8242' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:53 GMT + - Fri, 10 Apr 2026 22:34:17 GMT expires: - '-1' pragma: @@ -1204,7 +1210,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7B9E9B57006649368E650D6471F186AD Ref B: BY1AA1072320054 Ref C: 2026-03-24T01:25:53Z' + - 'Ref A: FE290870093D49368564F2C0C35DE891 Ref B: BN1AA2051015019 Ref C: 2026-04-10T22:34:17Z' status: code: 200 message: OK @@ -1222,23 +1228,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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:53.4726005+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:53.5018874+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-03-24T01:25:53.501942+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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:15.1928967+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:15.2636327+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-04-10T22:34:15.2637012+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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1681' + - '1683' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:53 GMT + - Fri, 10 Apr 2026 22:34:20 GMT expires: - '-1' pragma: @@ -1252,7 +1258,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 1A3025B18E7943549B9BB1171D3A3BDD Ref B: BY1AA1072315052 Ref C: 2026-03-24T01:25:54Z' + - 'Ref A: 43F6B863C7C5425189A781806D2E711F Ref B: BN1AA2051013053 Ref C: 2026-04-10T22:34:20Z' status: code: 200 message: OK @@ -1270,23 +1276,23 @@ interactions: ParameterSetName: - -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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:53.4726005+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:53.5018874+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-03-24T01:25:53.501942+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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:15.1928967+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:15.2636327+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-04-10T22:34:15.2637012+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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1681' + - '1683' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:54 GMT + - Fri, 10 Apr 2026 22:34:22 GMT expires: - '-1' pragma: @@ -1300,7 +1306,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 9AA4EA18C5DD4DAF908511C8B4FAFEE1 Ref B: BY1AA1072316031 Ref C: 2026-03-24T01:25:54Z' + - 'Ref A: 340AAB8DC39F48CEBAECD4BDFC0C6526 Ref B: BN1AA2051012021 Ref C: 2026-04-10T22:34:22Z' status: code: 200 message: OK @@ -1320,12 +1326,12 @@ interactions: ParameterSetName: - -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.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/clireg000002/listCredentials?api-version=2026-01-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"BVl4D4H8Wo34gN7Wdms1yhkuCNWTeC9L0ki0pWsIZ5b782fbm6DBJQQJ99CDAC4f1cMEqg7NAAACAZCRzn2o"},{"name":"password2","value":"4v369lMZjLU7mVfZrcKucpS6zLTbgMX1Ql6WxycWPDJdK3YnuCf9JQQJ99CDAC4f1cMEqg7NAAACAZCRw2aF"}]}' headers: api-supported-versions: - 2026-01-01-preview @@ -1336,7 +1342,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:54 GMT + - Fri, 10 Apr 2026 22:34:24 GMT expires: - '-1' pragma: @@ -1348,13 +1354,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/08e53930-85e7-4af4-8eca-f6a6a71aadf4 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/63a90f64-1373-43b2-867e-7a39d8d01df5 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 9CFC60C97DF14576B2BACFE9C3FCEF92 Ref B: BY1AA1072319052 Ref C: 2026-03-24T01:25:54Z' + - 'Ref A: 39394130506B4AC182AC33402450C4B9 Ref B: BN1AA2051013031 Ref C: 2026-04-10T22:34:24Z' status: code: 200 message: OK @@ -1374,27 +1380,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.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (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?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:25:32.6364076+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:25:53.4726005+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:25:32.6364076Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:25:53.5018874+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-03-24T01:25:53.501942+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-04-10T22:33:04.3370362+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:15.1928967+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:04.3370362Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:15.2636327+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-04-10T22:34:15.2637012+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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1680' + - '1682' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:25:55 GMT + - Fri, 10 Apr 2026 22:34:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-66ff2cfb-2720-11f1-9a24-70a8a51b6037?api-version=2026-01-01-preview&t=639099123553755808&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=oicht0zyki4K426HJwu_1Xk5kApd2Wh6ouwwPUPrFDH5RtOctntrExD-qZPWkICc8urH9SnTTZoyauyx1g8_mZdJjHTCAZHP_qJSd3nTrwALBeoadslFN0KzGJqnH-DkTO60-q5e75RU5rHgIuaWQ_Cq8FM5ac9YxFTlGk0jpSAB5_Rbp7tdluyMaTvokDZo3-MfuOxhGCbAe3wg_GhpiaOaxXmVSI2ucdneRlowPENLkwc3ZiVe14fU-cTFqon3WF_sQ66B-VV0sBTYi1fQjfsNglaCJbanC66MxuDrJxbgOjx4id_jzXu_rHqW7BHIE9Mtd6N80LESnSjL00jOxg&h=2NG-GAeUmlwHI1Jf_IKymtRZ1JxnwtWBtu89V5y7bK0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-717e356c-352d-11f1-8dbd-44a3bbbaa7c4?api-version=2026-01-01-preview&t=639114572708103035&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=WF4YdprN1fNY6tX4cav99atkLKBYrAratbQkI51SMh_NwIUpP3wsNlv95rpWppIb_3lY41uPCLt3Do_TxnHy4nIV41bfB0bjapEAZQ5a1yrr9hsBftRkrgvg5yQjwJYBDrfkYQW365EFGZOU5PvtNuJEwN_o2yAcYgjCAn2zCtGBgM5-OrKingRS2vAzQ1U2r6qb-wtdWZqphDf2_EP-vmuLqJMuY__iXtZzr9jkBZWxa2Zs-uUY6SgiG8EFyjihtiN1kAGHmP-uggsdiTzieYJSzrRzKLd4EH_K1h_-EwpiAyoKZy43PWkHrg7aXQVkf5wmZD_uCWpXXxyMSugnzA&h=oJg6IrtdaCvVzTr4So3EplAOFV6awt48jOGeQERLjJ8 pragma: - no-cache strict-transport-security: @@ -1404,13 +1410,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/146eacef-3021-4366-805c-b045706fc2bb + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/8547c2d2-4ca9-4f9e-9df7-0f164b3acccf x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 6409CA64B8FD4C06AA8FA4173C702CCB Ref B: BY1AA1072318025 Ref C: 2026-03-24T01:25:54Z' + - 'Ref A: E086DC93900C4D078ED3434249E230F1 Ref B: BN1AA2051012045 Ref C: 2026-04-10T22:34:30Z' status: code: 202 message: Accepted @@ -1428,9 +1434,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.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/westus/operationResults/registries-66ff2cfb-2720-11f1-9a24-70a8a51b6037?api-version=2026-01-01-preview&t=639099123553755808&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=oicht0zyki4K426HJwu_1Xk5kApd2Wh6ouwwPUPrFDH5RtOctntrExD-qZPWkICc8urH9SnTTZoyauyx1g8_mZdJjHTCAZHP_qJSd3nTrwALBeoadslFN0KzGJqnH-DkTO60-q5e75RU5rHgIuaWQ_Cq8FM5ac9YxFTlGk0jpSAB5_Rbp7tdluyMaTvokDZo3-MfuOxhGCbAe3wg_GhpiaOaxXmVSI2ucdneRlowPENLkwc3ZiVe14fU-cTFqon3WF_sQ66B-VV0sBTYi1fQjfsNglaCJbanC66MxuDrJxbgOjx4id_jzXu_rHqW7BHIE9Mtd6N80LESnSjL00jOxg&h=2NG-GAeUmlwHI1Jf_IKymtRZ1JxnwtWBtu89V5y7bK0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-717e356c-352d-11f1-8dbd-44a3bbbaa7c4?api-version=2026-01-01-preview&t=639114572708103035&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=WF4YdprN1fNY6tX4cav99atkLKBYrAratbQkI51SMh_NwIUpP3wsNlv95rpWppIb_3lY41uPCLt3Do_TxnHy4nIV41bfB0bjapEAZQ5a1yrr9hsBftRkrgvg5yQjwJYBDrfkYQW365EFGZOU5PvtNuJEwN_o2yAcYgjCAn2zCtGBgM5-OrKingRS2vAzQ1U2r6qb-wtdWZqphDf2_EP-vmuLqJMuY__iXtZzr9jkBZWxa2Zs-uUY6SgiG8EFyjihtiN1kAGHmP-uggsdiTzieYJSzrRzKLd4EH_K1h_-EwpiAyoKZy43PWkHrg7aXQVkf5wmZD_uCWpXXxyMSugnzA&h=oJg6IrtdaCvVzTr4So3EplAOFV6awt48jOGeQERLjJ8 response: body: string: '' @@ -1440,11 +1446,11 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 01:25:55 GMT + - Fri, 10 Apr 2026 22:34:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-66ff2cfb-2720-11f1-9a24-70a8a51b6037?api-version=2026-01-01-preview&t=639099123559633171&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=TR6W4odbnE83LLqTocfAOdsVYVNN0rzjhAHdhwBNvFp7HUNwtr-pQkv-hBuntW43JECCtATpl7F4xkJx_gqh7Bg8DbuydO2LFb4_NRN9_ueIMc3b6ml091jm2Xa3I0tcvRi2G4-3YS6Iw5EeOeERbi7hmid70oscLJR5q8Rua0vzIJeGOVckMWgRhVhMNtMorU1nXO-H30X2YLP0GpJR-0jEKNQIaIXtYsebnXRG7fRwysDmr9-m8qsJPNDKsLWM2CEYXrI0IC5dy97uxXw_V_09eyId_qOmeG5oxOmWMYYstSB-K67lDoCUPRJZEttVFClfDf5D4ekGpXY2ruD-ZQ&h=nPP6DIcTtdSnR-j7l7nePkKPdBTEhH9jUBvPX8XWoHI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-717e356c-352d-11f1-8dbd-44a3bbbaa7c4?api-version=2026-01-01-preview&t=639114572732093965&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=uTGQk_SrPi3SAFV8PmuDXzm3Ii1IuFDK9JTZ09GrH1jON06VChHkWj8d1hpzafsrMKjLEVJWHOojm3HX6-iCAtBRkdVqE84yfGtl22R2kPn_xylLc9G8fsNu9YncbSwsuRtCbmySQGl6yq2i-KLPd_vxRSAkPqRF_LZGgw2zDUOCrDKMkwzdS223cn1IEZJwMHls0cVjoIorTEgyG6TR0_okU2u9J4P8lEwGwNESVqp-hFfah6N2jsIiI5kwujSS_2OqFYlcGwKsI1Xeux2_lTbV0N_1DDOSxTlLEhYsEgDsZvXEa_F9EfX1KAVHtsE3Exk9VJdka0gbOGoUNrGJeA&h=JVrMVZQxAyVWZh2-Y809zQIc6BS7DoDLoGenq4PXIX4 pragma: - no-cache strict-transport-security: @@ -1454,11 +1460,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus3/31809307-8b30-49f9-8405-ca4bf2d004da + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/7ffe74c5-e2fa-43c6-b4d9-aa38ea06ae64 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 55B4327507794E92B07DD0C2328FA34B Ref B: SJC211051204053 Ref C: 2026-03-24T01:25:55Z' + - 'Ref A: C92D359FDA20481DB82C865FE22F2C61 Ref B: BN1AA2051014049 Ref C: 2026-04-10T22:34:32Z' status: code: 202 message: Accepted @@ -1476,9 +1482,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.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/westus/operationResults/registries-66ff2cfb-2720-11f1-9a24-70a8a51b6037?api-version=2026-01-01-preview&t=639099123559633171&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=TR6W4odbnE83LLqTocfAOdsVYVNN0rzjhAHdhwBNvFp7HUNwtr-pQkv-hBuntW43JECCtATpl7F4xkJx_gqh7Bg8DbuydO2LFb4_NRN9_ueIMc3b6ml091jm2Xa3I0tcvRi2G4-3YS6Iw5EeOeERbi7hmid70oscLJR5q8Rua0vzIJeGOVckMWgRhVhMNtMorU1nXO-H30X2YLP0GpJR-0jEKNQIaIXtYsebnXRG7fRwysDmr9-m8qsJPNDKsLWM2CEYXrI0IC5dy97uxXw_V_09eyId_qOmeG5oxOmWMYYstSB-K67lDoCUPRJZEttVFClfDf5D4ekGpXY2ruD-ZQ&h=nPP6DIcTtdSnR-j7l7nePkKPdBTEhH9jUBvPX8XWoHI + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-717e356c-352d-11f1-8dbd-44a3bbbaa7c4?api-version=2026-01-01-preview&t=639114572732093965&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=uTGQk_SrPi3SAFV8PmuDXzm3Ii1IuFDK9JTZ09GrH1jON06VChHkWj8d1hpzafsrMKjLEVJWHOojm3HX6-iCAtBRkdVqE84yfGtl22R2kPn_xylLc9G8fsNu9YncbSwsuRtCbmySQGl6yq2i-KLPd_vxRSAkPqRF_LZGgw2zDUOCrDKMkwzdS223cn1IEZJwMHls0cVjoIorTEgyG6TR0_okU2u9J4P8lEwGwNESVqp-hFfah6N2jsIiI5kwujSS_2OqFYlcGwKsI1Xeux2_lTbV0N_1DDOSxTlLEhYsEgDsZvXEa_F9EfX1KAVHtsE3Exk9VJdka0gbOGoUNrGJeA&h=JVrMVZQxAyVWZh2-Y809zQIc6BS7DoDLoGenq4PXIX4 response: body: string: '' @@ -1488,7 +1494,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 01:26:06 GMT + - Fri, 10 Apr 2026 22:34:44 GMT expires: - '-1' pragma: @@ -1500,11 +1506,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/c292feeb-26d0-4350-8142-96d8332e512b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/f7fb616d-a706-4f55-945c-0994a521dc8e x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D2483D4CF6074449BFAEEDF2531968BE Ref B: BY1AA1072317052 Ref C: 2026-03-24T01:26:06Z' + - 'Ref A: 651A1E0DF3D746B895350121A64CD156 Ref B: BN1AA2051013029 Ref C: 2026-04-10T22:34:45Z' 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 e3fa2722838..1d307e8d54b 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.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - 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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:08.0532836+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:26:16.0634025+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:16.063442+00:00","status":"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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:05.4447156+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:22.8930594+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:22.8931058+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1663' + - '1664' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:15 GMT + - Fri, 10 Apr 2026 22:33:22 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/1cde623b-8d70-4186-b821-c32998775f93 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus2/dbb2e67a-44dc-4f8a-95ed-b8870e237790 x-ms-ratelimit-remaining-subscription-global-writes: - '12000' x-ms-ratelimit-remaining-subscription-writes: - '800' x-msedge-ref: - - 'Ref A: 37A55C168C3047DDAD351619CC78B877 Ref B: BY1AA1072317054 Ref C: 2026-03-24T01:26:07Z' + - 'Ref A: 982D5EA7AEE34CCDAFCC1AEF68741BAF Ref B: BN1AA2051012053 Ref C: 2026-04-10T22:33:03Z' status: code: 200 message: OK @@ -70,23 +70,23 @@ interactions: ParameterSetName: - -n -g --sku --allow-metadata-search User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - 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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:08.0532836+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:26:16.0634025+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:16.063442+00:00","status":"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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:05.4447156+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:22.8930594+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:22.8931058+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1663' + - '1664' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:16 GMT + - Fri, 10 Apr 2026 22:33:26 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B67821D3AC0F421EB43F5601964378DF Ref B: SJC211051204049 Ref C: 2026-03-24T01:26:16Z' + - 'Ref A: 532C62DD5BDF46ABA20BF41BC3ED2BB3 Ref B: BN1AA2051012009 Ref C: 2026-04-10T22:33:26Z' status: code: 200 message: OK @@ -122,23 +122,23 @@ interactions: ParameterSetName: - -n -g --sku --allow-metadata-search User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:16.7133155+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:26:16.0634025+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:16.063442+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:29.1174029+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:22.8930594+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:22.8931058+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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: - - '1664' + - '1665' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:16 GMT + - Fri, 10 Apr 2026 22:33:29 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=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/fb72b33a-cf43-48c4-949b-f27eb4f97865 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/b394051b-1d83-4654-b787-b713cf3a38a6 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: CA89C07F34D14574B3E1D368A91088A2 Ref B: BY1AA1072315036 Ref C: 2026-03-24T01:26:16Z' + - 'Ref A: 02E5F667A64A4C8EBBFEE7549740DBE5 Ref B: BN1AA2051013019 Ref C: 2026-04-10T22:33:28Z' status: code: 200 message: OK @@ -174,23 +174,23 @@ interactions: ParameterSetName: - -n -g --sku --allow-metadata-search User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - 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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:16.7133155+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:26:16.0634025+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:16.063442+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:29.1174029+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:22.8930594+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:22.8931058+00:00","status":"disabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":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: - - '1664' + - '1665' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:16 GMT + - Fri, 10 Apr 2026 22:33:30 GMT expires: - '-1' pragma: @@ -204,7 +204,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7D5098AA93E049099263919252D59140 Ref B: BY1AA1072318036 Ref C: 2026-03-24T01:26:17Z' + - 'Ref A: 1131DE2A60614D8D846CB5E78EA5100A Ref B: BN1AA2051014027 Ref C: 2026-04-10T22:33:31Z' status: code: 200 message: OK @@ -226,23 +226,23 @@ interactions: ParameterSetName: - -n -g --sku --allow-metadata-search User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:17.4199971+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:26:16.0634025+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:16.063442+00:00","status":"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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:34.2977689+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:22.8930594+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:22.8931058+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1663' + - '1664' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:16 GMT + - Fri, 10 Apr 2026 22:33:34 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=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/75ec75d3-83c9-48d1-87e3-55b27a6a1f62 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/9dcc3e8c-d5e4-46e8-93b0-74653df5c91c x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: FDB6CC28ABEB4987ABED0EBB6931C113 Ref B: SJC211051205047 Ref C: 2026-03-24T01:26:17Z' + - 'Ref A: DD5AD471F233446087CA6A7EBD8F32E1 Ref B: BN1AA2051013017 Ref C: 2026-04-10T22:33:33Z' status: code: 200 message: OK @@ -283,7 +283,7 @@ interactions: ParameterSetName: - -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.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/providers/Microsoft.ContainerRegistry/checkNameAvailability?api-version=2026-01-01-preview response: @@ -298,7 +298,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:17 GMT + - Fri, 10 Apr 2026 22:33:36 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=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/623d2e72-4521-4e4e-b840-3d74e4ce0d5d + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/96406423-ca7f-4406-b96f-e020746122e1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: FCEEFEA4586C4F89801FADB20F5CCA8D Ref B: BY1AA1072315025 Ref C: 2026-03-24T01:26:17Z' + - 'Ref A: 4B5432026EE74BB599B3ECCDE9986BF3 Ref B: BN1AA2051014037 Ref C: 2026-04-10T22:33:36Z' status: code: 200 message: OK @@ -332,23 +332,23 @@ interactions: ParameterSetName: - -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.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?api-version=2026-01-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-03-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:17.4199971+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:26:16.0634025+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:16.063442+00:00","status":"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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:34.2977689+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:22.8930594+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:22.8931058+00:00","status":"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"}}]}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1675' + - '1676' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:17 GMT + - Fri, 10 Apr 2026 22:33:39 GMT expires: - '-1' pragma: @@ -364,7 +364,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 7C7C1ED418B64F58B5076044F0E1DA9F Ref B: BY1AA1072317023 Ref C: 2026-03-24T01:26:18Z' + - 'Ref A: DDF089DE6DBB4A2FAB84FEB2F7FEA961 Ref B: BN1AA2051015035 Ref C: 2026-04-10T22:33:39Z' status: code: 200 message: OK @@ -382,23 +382,23 @@ interactions: ParameterSetName: - -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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:17.4199971+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:26:16.0634025+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:16.063442+00:00","status":"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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:34.2977689+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:22.8930594+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:22.8931058+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1663' + - '1664' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:18 GMT + - Fri, 10 Apr 2026 22:33:41 GMT expires: - '-1' pragma: @@ -412,7 +412,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 35159AD3777144FBA03A5908C4C74040 Ref B: BY1AA1072320060 Ref C: 2026-03-24T01:26:18Z' + - 'Ref A: 87182C0C7E9245189672625A6E9BE31D Ref B: BN1AA2051015023 Ref C: 2026-04-10T22:33:41Z' status: code: 200 message: OK @@ -430,23 +430,23 @@ interactions: ParameterSetName: - -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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:17.4199971+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:26:16.0634025+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:16.063442+00:00","status":"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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:34.2977689+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:22.8930594+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:22.8931058+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1663' + - '1664' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:18 GMT + - Fri, 10 Apr 2026 22:33:44 GMT expires: - '-1' pragma: @@ -460,7 +460,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F80CEEFA3DE347FBA5B18346AD695DF1 Ref B: BY1AA1072320031 Ref C: 2026-03-24T01:26:19Z' + - 'Ref A: 8046037936D34392966A6306A1F2E60B Ref B: BN1AA2051012011 Ref C: 2026-04-10T22:33:45Z' status: code: 200 message: OK @@ -478,7 +478,7 @@ interactions: ParameterSetName: - -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.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/clireg000002/listUsages?api-version=2026-01-01-preview response: @@ -494,7 +494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:19 GMT + - Fri, 10 Apr 2026 22:33:47 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=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/d5e28f66-0abd-4064-aa66-c96263f5c633 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/a08b2772-6006-43c8-b5d9-43bc5798f1d4 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 45AB3EF3CD56455784670CF477C56708 Ref B: BY1AA1072316060 Ref C: 2026-03-24T01:26:19Z' + - 'Ref A: 8CAFB54AC4B84E46B31FCDEFD00D3C26 Ref B: BN1AA2051014031 Ref C: 2026-04-10T22:33:47Z' status: code: 200 message: OK @@ -528,23 +528,23 @@ interactions: ParameterSetName: - -n -g --tags --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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:17.4199971+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:26:16.0634025+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:16.063442+00:00","status":"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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:34.2977689+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:22.8930594+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:22.8931058+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1663' + - '1664' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:19 GMT + - Fri, 10 Apr 2026 22:33:50 GMT expires: - '-1' pragma: @@ -558,7 +558,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D3398F7F7B504A93B013CCD0C5D65A64 Ref B: SJC211051204035 Ref C: 2026-03-24T01:26:19Z' + - 'Ref A: 8928257F83BE493CA839D13E39CECB83 Ref B: BN1AA2051012017 Ref C: 2026-04-10T22:33:50Z' status: code: 200 message: OK @@ -581,23 +581,23 @@ interactions: ParameterSetName: - -n -g --tags --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.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:19.7766536+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:26:16.0634025+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:16.063442+00:00","status":"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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:22.8930594+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:22.8931058+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1682' + - '1683' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:19 GMT + - Fri, 10 Apr 2026 22:33:52 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=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/a2312509-4b22-47bf-a12e-e7aaf3406daa + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/888a2254-877b-4bdc-a3ed-3416e590fede x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 0CB632D54C614186B23A799BA31131FD Ref B: BY1AA1072315036 Ref C: 2026-03-24T01:26:19Z' + - 'Ref A: F3A9C5F25514456C87375CC1B47BD02F Ref B: BN1AA2051013031 Ref C: 2026-04-10T22:33:52Z' status: code: 200 message: OK @@ -633,21 +633,22 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - 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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:26:08.0532836Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:19.7766536Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","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-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","name":"clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"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-04-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8242' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:19 GMT + - Fri, 10 Apr 2026 22:33:55 GMT expires: - '-1' pragma: @@ -661,7 +662,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 2EC0852B522640528ECAC58C69C0A952 Ref B: BY1AA1072316031 Ref C: 2026-03-24T01:26:20Z' + - 'Ref A: 01FE5CA33F28444C9AC9EE3F1FBA841E Ref B: BN1AA2051012037 Ref C: 2026-04-10T22:33:55Z' status: code: 200 message: OK @@ -679,23 +680,23 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - 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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:19.7766536+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-03-24T01:26:16.0634025+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:16.063442+00:00","status":"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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2026-04-10T22:33:22.8930594+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:33:22.8931058+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1682' + - '1683' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:19 GMT + - Fri, 10 Apr 2026 22:33:58 GMT expires: - '-1' pragma: @@ -709,7 +710,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: B3C379B04EF24FEFABB4269525976B0A Ref B: BY1AA1072317025 Ref C: 2026-03-24T01:26:20Z' + - 'Ref A: 75DF8085AF2B414CA9E2352939CE664C Ref B: BN1AA2051012033 Ref C: 2026-04-10T22:33:58Z' status: code: 200 message: OK @@ -734,12 +735,12 @@ interactions: ParameterSetName: - -r --status --days --type User-Agent: - - AZURECLI/2.84.0 azsdk-python-core/1.38.0 Python/3.12.3 (Linux-6.17.0-1008-azure-x86_64-with-glibc2.39) + - AZURECLI/2.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:20.7307917+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:26:20.7862331+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:20.7862958+00:00","status":"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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:02.3729686+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:02.4253421+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:34:02.4254069+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -750,7 +751,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:20 GMT + - Fri, 10 Apr 2026 22:34:02 GMT expires: - '-1' pragma: @@ -762,13 +763,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/47104838-c35c-4b09-acc9-e90364c93add + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/93620447-a07e-4550-a17d-412c7a944d13 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 2C8F4EB7C84748D8A2A7C048EEE115B8 Ref B: BY1AA1072317040 Ref C: 2026-03-24T01:26:20Z' + - 'Ref A: 38BFA8A4406840FFABAFC334A7090920 Ref B: BN1AA2051012045 Ref C: 2026-04-10T22:34:01Z' status: code: 200 message: OK @@ -786,21 +787,22 @@ 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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:26:08.0532836Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:19.7766536Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","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-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","name":"clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"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-04-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8242' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:20 GMT + - Fri, 10 Apr 2026 22:34:04 GMT expires: - '-1' pragma: @@ -814,7 +816,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 51D8B04F35BD4004B7B24672C3B1A913 Ref B: SJC211051204025 Ref C: 2026-03-24T01:26:21Z' + - 'Ref A: 5B0B8788AFE641C6933B85FF641324A0 Ref B: BN1AA2051013019 Ref C: 2026-04-10T22:34:04Z' status: code: 200 message: OK @@ -832,12 +834,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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:20.7307917+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:26:20.7862331+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:20.7862958+00:00","status":"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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:02.3729686+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:02.4253421+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:34:02.4254069+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -848,7 +850,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:21 GMT + - Fri, 10 Apr 2026 22:34:06 GMT expires: - '-1' pragma: @@ -862,7 +864,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: D2B195E3C1E042228B85A6CD2490164F Ref B: SJC211051204025 Ref C: 2026-03-24T01:26:21Z' + - 'Ref A: 5619314903814DD3872AFAB690483A0E Ref B: BN1AA2051015051 Ref C: 2026-04-10T22:34:06Z' status: code: 200 message: OK @@ -878,23 +880,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n --status + - -n --status --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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:26:08.0532836Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:19.7766536Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","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-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","name":"clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"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-04-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8242' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:20 GMT + - Fri, 10 Apr 2026 22:34:08 GMT expires: - '-1' pragma: @@ -906,9 +909,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-global-reads: - - '16498' + - '16499' x-msedge-ref: - - 'Ref A: 6AABCD856D1A4FB6A9D0E2AC0DE430FB Ref B: BY1AA1072320052 Ref C: 2026-03-24T01:26:21Z' + - 'Ref A: 1AE23E4F5972414F8A92CF1C2F1E1811 Ref B: BN1AA2051015017 Ref C: 2026-04-10T22:34:08Z' status: code: 200 message: OK @@ -924,14 +927,14 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n --status + - -n --status --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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:20.7307917+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:26:20.7862331+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:20.7862958+00:00","status":"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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:02.3729686+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:02.4253421+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:34:02.4254069+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview @@ -942,7 +945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:21 GMT + - Fri, 10 Apr 2026 22:34:10 GMT expires: - '-1' pragma: @@ -956,14 +959,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: BDBDB7E14E5C476B9B39B41A4CC2B8BE Ref B: BY1AA1072315042 Ref C: 2026-03-24T01:26:21Z' + - 'Ref A: 6B75630C1377446AA86BADFAF98C7354 Ref B: BN1AA2051015029 Ref C: 2026-04-10T22:34:11Z' status: code: 200 message: OK - request: body: '{"properties": {"policies": {"quarantinePolicy": {"status": "disabled"}, - "trustPolicy": {"type": "Notary", "status": "enabled"}, "retentionPolicy": {"days": - 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 7, "status": "disabled"}}}}' headers: Accept: @@ -975,29 +978,29 @@ interactions: Connection: - keep-alive Content-Length: - - '346' + - '347' Content-Type: - application/json ParameterSetName: - - -n --status + - -n --status --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.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:22.3995165+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:26:22.4378531+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:22.4379164+00:00","status":"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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:14.8627804+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:14.9032996+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:34:14.9033629+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1682' + - '1683' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:22 GMT + - Fri, 10 Apr 2026 22:34:14 GMT expires: - '-1' pragma: @@ -1009,13 +1012,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/404c3df0-df84-4d33-8b63-b66c54dc5899 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/de2ca3f0-2763-4f91-a63a-7a3ef02dbd7b x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 8F44A78B8F914D77B06277F784870CBD Ref B: SJC211051204051 Ref C: 2026-03-24T01:26:22Z' + - 'Ref A: 5384B8D9946748A88A4E44DF011C9F89 Ref B: BN1AA2051015027 Ref C: 2026-04-10T22:34:14Z' status: code: 200 message: OK @@ -1033,21 +1036,22 @@ interactions: ParameterSetName: - -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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:26:08.0532836Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:19.7766536Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","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-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","name":"clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"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-04-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8242' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:21 GMT + - Fri, 10 Apr 2026 22:34:17 GMT expires: - '-1' pragma: @@ -1061,7 +1065,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 3C349EFF1850411A9882F81CF6051DC1 Ref B: BY1AA1072316025 Ref C: 2026-03-24T01:26:22Z' + - 'Ref A: 37DB0D69759A45EFA3596E12E06704A2 Ref B: BN1AA2051015053 Ref C: 2026-04-10T22:34:17Z' status: code: 200 message: OK @@ -1079,23 +1083,23 @@ interactions: ParameterSetName: - -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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:22.3995165+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:26:22.4378531+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:22.4379164+00:00","status":"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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:14.8627804+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:14.9032996+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:34:14.9033629+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1682' + - '1683' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:22 GMT + - Fri, 10 Apr 2026 22:34:19 GMT expires: - '-1' pragma: @@ -1109,7 +1113,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 82E44B9309BE48AFBF312728C97C2B7A Ref B: SJC211051204051 Ref C: 2026-03-24T01:26:22Z' + - 'Ref A: A81A7CF72CEF478A9C179446D0FF17DE Ref B: BN1AA2051012033 Ref C: 2026-04-10T22:34:19Z' status: code: 200 message: OK @@ -1127,21 +1131,22 @@ interactions: ParameterSetName: - -r --status --days --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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:26:08.0532836Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:19.7766536Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","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-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzkcy27x6wecmjspeqyqzfzphe5p5amrgyqsswx5vrojujbyfjngubbps4gx6ftkyp/providers/Microsoft.ContainerRegistry/registries/clireg5ojuqscqastasx","name":"clireg5ojuqscqastasx","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-10T22:33:05.3689626Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:27.4780576Z"}},{"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-04-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '8242' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:22 GMT + - Fri, 10 Apr 2026 22:34:22 GMT expires: - '-1' pragma: @@ -1155,7 +1160,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 75092DC0BA5D40379773D2CE32704F20 Ref B: BY1AA1072319023 Ref C: 2026-03-24T01:26:22Z' + - 'Ref A: 2AB71195E9B848B197FE494EE5149106 Ref B: BN1AA2051014019 Ref C: 2026-04-10T22:34:21Z' status: code: 200 message: OK @@ -1173,23 +1178,23 @@ interactions: ParameterSetName: - -r --status --days --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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:22.3995165+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:26:22.4378531+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-03-24T01:26:22.4379164+00:00","status":"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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:14.8627804+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:14.9032996+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":7,"lastUpdatedTime":"2026-04-10T22:34:14.9033629+00:00","status":"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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1682' + - '1683' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:23 GMT + - Fri, 10 Apr 2026 22:34:23 GMT expires: - '-1' pragma: @@ -1203,14 +1208,14 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F879332FB23245138E6622D89153C7E6 Ref B: SJC211051201009 Ref C: 2026-03-24T01:26:23Z' + - 'Ref A: 7E6C3B53A1614A04AE9E43E8696817F5 Ref B: BN1AA2051014017 Ref C: 2026-04-10T22:34:23Z' status: code: 200 message: OK - request: body: '{"properties": {"policies": {"quarantinePolicy": {"status": "disabled"}, - "trustPolicy": {"type": "Notary", "status": "enabled"}, "retentionPolicy": {"days": - 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": + "trustPolicy": {"type": "Notary", "status": "disabled"}, "retentionPolicy": + {"days": 30, "status": "enabled"}, "exportPolicy": {"status": "enabled"}, "azureADAuthenticationAsArmPolicy": {"status": "enabled"}, "softDeletePolicy": {"retentionDays": 30, "status": "enabled"}}}}' headers: Accept: @@ -1222,29 +1227,29 @@ interactions: Connection: - keep-alive Content-Length: - - '346' + - '347' Content-Type: - application/json ParameterSetName: - -r --status --days --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.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (Windows-11-10.0.26200-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-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:24.276763+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:26:24.3158133+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-03-24T01:26:24.3158776+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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:26.1823724+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:26.2242509+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-04-10T22:34:26.2243129+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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1681' + - '1683' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:24 GMT + - Fri, 10 Apr 2026 22:34:26 GMT expires: - '-1' pragma: @@ -1256,13 +1261,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/45ab1820-d698-483f-908e-ed4a7e264122 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/f7462f3c-4258-429e-8740-f58b467128c6 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 1F606BEDC85044FC8BF33CEB6571D2A2 Ref B: BY1AA1072316062 Ref C: 2026-03-24T01:26:23Z' + - 'Ref A: 6E42063F61D7425BACEB01B2270E2582 Ref B: BN1AA2051012025 Ref C: 2026-04-10T22:34:25Z' status: code: 200 message: OK @@ -1280,21 +1285,22 @@ 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.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/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":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"test@example.com","createdByType":"User","createdAt":"2026-03-24T01:26:08.0532836Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:19.7766536Z"}}]}' + 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.rgtff7ucxn4mruxvps2k53yrpawhy7dscrodnz5by6ey52nazd57lmzqpd3tpg3nzyc/providers/Microsoft.ContainerRegistry/registries/cliregap3ivdecpytred","name":"cliregap3ivdecpytred","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-10T22:33:03.9333646Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:33.976916Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgzcj57b4b44sod2xr6krfhb4ts6lsgzbi7ygspomyfjctum52e5nenjx65uinaabqq/providers/Microsoft.ContainerRegistry/registries/cliregqyheezm5tdwnp3","name":"cliregqyheezm5tdwnp3","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-10T22:33:04.3370362Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:39.6161717Z"}},{"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-04-10T22:33:05.4447156Z","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:33:53.2160026Z"}},{"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"}}]}' headers: cache-control: - no-cache content-length: - - '2205' + - '7626' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:24 GMT + - Fri, 10 Apr 2026 22:34:30 GMT expires: - '-1' pragma: @@ -1308,7 +1314,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 23F34EE67CBD466DACA9CB6FFF74C61E Ref B: BY1AA1072318023 Ref C: 2026-03-24T01:26:24Z' + - 'Ref A: E954ADE63E854924A36F345A38A4FDD0 Ref B: BN1AA2051015037 Ref C: 2026-04-10T22:34:30Z' status: code: 200 message: OK @@ -1326,23 +1332,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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:24.276763+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:26:24.3158133+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-03-24T01:26:24.3158776+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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:26.1823724+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:26.2242509+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-04-10T22:34:26.2243129+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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1681' + - '1683' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:24 GMT + - Fri, 10 Apr 2026 22:34:32 GMT expires: - '-1' pragma: @@ -1356,7 +1362,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 49051435A2F94C5CAE459680EB506464 Ref B: BY1AA1072320023 Ref C: 2026-03-24T01:26:24Z' + - 'Ref A: 7B52454BAB4440DCA32CF7E86CCE7739 Ref B: BN1AA2051012023 Ref C: 2026-04-10T22:34:32Z' status: code: 200 message: OK @@ -1374,23 +1380,23 @@ interactions: ParameterSetName: - -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.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/clireg000002?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:24.276763+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:26:24.3158133+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-03-24T01:26:24.3158776+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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:26.1823724+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Succeeded","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:26.2242509+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-04-10T22:34:26.2243129+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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1681' + - '1683' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:23 GMT + - Fri, 10 Apr 2026 22:34:33 GMT expires: - '-1' pragma: @@ -1404,7 +1410,7 @@ interactions: x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: A2BA814858064AC7B671619A3B82CA4B Ref B: BY1AA1072315060 Ref C: 2026-03-24T01:26:24Z' + - 'Ref A: F4987EBB3C0C46BDB268AC736585D2A0 Ref B: BN1AA2051013045 Ref C: 2026-04-10T22:34:34Z' status: code: 200 message: OK @@ -1424,12 +1430,12 @@ interactions: ParameterSetName: - -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.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/clireg000002/listCredentials?api-version=2026-01-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"8YIv7KQ2MzWSmQsCMUcYU6CexDmSx9PblcghtwKAYpOsSOy6PI8lJQQJ99CDAC4f1cMEqg7NAAACAZCRKtu1"},{"name":"password2","value":"A2vp5BZfOpx4SHlAejcVXyHhlxgOufKvNr7Auzpl4p9whsbiTRfLJQQJ99CDAC4f1cMEqg7NAAACAZCRB4EA"}]}' headers: api-supported-versions: - 2026-01-01-preview @@ -1440,7 +1446,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:24 GMT + - Fri, 10 Apr 2026 22:34:36 GMT expires: - '-1' pragma: @@ -1452,13 +1458,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/425ecf49-6c0a-4020-977a-8eb45bbd79f5 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/5fa65999-c4d5-48e0-8e84-4ef270ae8370 x-ms-ratelimit-remaining-subscription-global-writes: - '11999' x-ms-ratelimit-remaining-subscription-writes: - '799' x-msedge-ref: - - 'Ref A: 0B67EFC202BB4215B43071AF127E19A5 Ref B: BY1AA1072317034 Ref C: 2026-03-24T01:26:24Z' + - 'Ref A: DF8C2834B3C44C088068532365EC8531 Ref B: BN1AA2051015051 Ref C: 2026-04-10T22:34:36Z' status: code: 200 message: OK @@ -1478,27 +1484,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.85.0 azsdk-python-core/1.39.0 Python/3.13.12 (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?api-version=2026-01-01-preview response: body: - string: '{"sku":{"name":"Premium","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-03-24T01:26:08.0532836+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-03-24T01:26:24.276763+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-03-24T01:26:08.0532836Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"enabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-03-24T01:26:24.3158133+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-03-24T01:26:24.3158776+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-04-10T22:33:05.4447156+00:00","lastModifiedBy":"test@example.com","lastModifiedByType":"User","lastModifiedAt":"2026-04-10T22:34:26.1823724+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2026-04-10T22:33:05.4447156Z","provisioningState":"Deleting","adminUserEnabled":true,"networkRuleSet":{"defaultAction":"Allow","ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":30,"lastUpdatedTime":"2026-04-10T22:34:26.2242509+00:00","status":"enabled"},"exportPolicy":{"status":"enabled"},"azureADAuthenticationAsArmPolicy":{"status":"enabled"},"softDeletePolicy":{"retentionDays":30,"lastUpdatedTime":"2026-04-10T22:34:26.2243129+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"}}' headers: api-supported-versions: - 2026-01-01-preview cache-control: - no-cache content-length: - - '1680' + - '1682' content-type: - application/json; charset=utf-8 date: - - Tue, 24 Mar 2026 01:26:25 GMT + - Fri, 10 Apr 2026 22:34:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-7933e6cd-2720-11f1-928d-70a8a51b6037?api-version=2026-01-01-preview&t=639099123855853966&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=FtiLbrdMbHspuTpF5s5Wu13iYR_nalHBf1t-QnkCBGFb1exC0L5x8FdRfCFRA21wKPEQ0x8xIXzVHI8Mbf6R333LTOxXQhCxVGaYzEWIcwBj7jwOkG38F-Ayn_kwSciKLyNu9kReE7WgxnJbF9Xzgf2vZGSpEYUogdBn9aqirKTVeaYMznKozUHDtjlTabvV7Bn9UsP-LKRuGyZiolZbbhi7Zr86sIr1E0h_8hxB2qHCrhrM07FV7OeX4FsaJ0iAOiDnOnulnEP0YbXljPYA6qjfWiKOFrwXizfjCUym8hzOBAs3itJ82MPjSZ4lx37wec0YtO7N1ptexK81YIY-kw&h=F72N1Y4xcSBTh0XV74Pm8f6eQqEr_DFgYigYhwbVhsk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-787d7137-352d-11f1-bbbb-44a3bbbaa7c4?api-version=2026-01-01-preview&t=639114572783817097&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=AwZ7orRHAmyb2LIDTvODhyqTa7gsvmjyu_echfIeL-GeGK7J2Vw0z5JjmfS9k472z7i8kvN2RVZJ5mEEC4EZZ-4JO6yx5RRjo-Vx9XSXl5Cha6VxSDLMaAd2qvm7mrHQPfGF6KKZNxQvMxWLsRWn2qpfBauivYNDLIBt-stxQdJpH1u2GxMI4SPHJ7dDL46Q59M-0AzZzc6hfO2T-5VFtnukoH7DWTPfpFzOaGGl6y4WnrLeE_QVnMOzq7NW-BWgwCQJBMTIFn-KBsWnDFLHq4xsQhz4hPKKUP-anv9rS6WIskClcx1PC_VdpnRD6jDfNKDP3V7cSCjET5fjy81FnA&h=pZXB-R-3v7bV3g7nmTIDHIuG51mscKhdu-p2HIippo0 pragma: - no-cache strict-transport-security: @@ -1508,13 +1514,13 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/828d7b16-e615-4de8-b904-8aff10c312c2 + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/westus/54ffccc7-75f7-46a5-b2de-fab0b99a9974 x-ms-ratelimit-remaining-subscription-deletes: - '799' x-ms-ratelimit-remaining-subscription-global-deletes: - '11999' x-msedge-ref: - - 'Ref A: 3770D67D39F740B98D6D547B792B7473 Ref B: SJC211051205051 Ref C: 2026-03-24T01:26:25Z' + - 'Ref A: 63147635DD6949A489216A76BF85C1A7 Ref B: BN1AA2051012045 Ref C: 2026-04-10T22:34:38Z' status: code: 202 message: Accepted @@ -1532,9 +1538,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.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/westus/operationResults/registries-7933e6cd-2720-11f1-928d-70a8a51b6037?api-version=2026-01-01-preview&t=639099123855853966&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=FtiLbrdMbHspuTpF5s5Wu13iYR_nalHBf1t-QnkCBGFb1exC0L5x8FdRfCFRA21wKPEQ0x8xIXzVHI8Mbf6R333LTOxXQhCxVGaYzEWIcwBj7jwOkG38F-Ayn_kwSciKLyNu9kReE7WgxnJbF9Xzgf2vZGSpEYUogdBn9aqirKTVeaYMznKozUHDtjlTabvV7Bn9UsP-LKRuGyZiolZbbhi7Zr86sIr1E0h_8hxB2qHCrhrM07FV7OeX4FsaJ0iAOiDnOnulnEP0YbXljPYA6qjfWiKOFrwXizfjCUym8hzOBAs3itJ82MPjSZ4lx37wec0YtO7N1ptexK81YIY-kw&h=F72N1Y4xcSBTh0XV74Pm8f6eQqEr_DFgYigYhwbVhsk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-787d7137-352d-11f1-bbbb-44a3bbbaa7c4?api-version=2026-01-01-preview&t=639114572783817097&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=AwZ7orRHAmyb2LIDTvODhyqTa7gsvmjyu_echfIeL-GeGK7J2Vw0z5JjmfS9k472z7i8kvN2RVZJ5mEEC4EZZ-4JO6yx5RRjo-Vx9XSXl5Cha6VxSDLMaAd2qvm7mrHQPfGF6KKZNxQvMxWLsRWn2qpfBauivYNDLIBt-stxQdJpH1u2GxMI4SPHJ7dDL46Q59M-0AzZzc6hfO2T-5VFtnukoH7DWTPfpFzOaGGl6y4WnrLeE_QVnMOzq7NW-BWgwCQJBMTIFn-KBsWnDFLHq4xsQhz4hPKKUP-anv9rS6WIskClcx1PC_VdpnRD6jDfNKDP3V7cSCjET5fjy81FnA&h=pZXB-R-3v7bV3g7nmTIDHIuG51mscKhdu-p2HIippo0 response: body: string: '' @@ -1544,11 +1550,11 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 01:26:24 GMT + - Fri, 10 Apr 2026 22:34:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-7933e6cd-2720-11f1-928d-70a8a51b6037?api-version=2026-01-01-preview&t=639099123858387656&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=C-7XW9MwYPnVL0dbAg7kajmzh9EDK62soXTUq7BFOl3XOP8dn6uyq_Qp82_Yg5YAZWyHgVF_SVW8rvrzcHJ9FIQMjM9UzP7XdGvBGnwjVvh3QU4-zcEUSeL1f4KZ5oj0SUX80oqRVMD8Zr23LTuDBX3en0lfu9pajH3OWlMMdO61qgw5FV6vdJtV2cxULWwcXBf1Hy8hlBtr2NpoivkO4hqRbMSO-4f6PyGvVYiES3YKqwkxQfz_EzVdYDZG09pdvKNWfu-SMAXU17ZSNAEWR1m4qnQXqlJQoXuYVo4dV11sH1brl-cVAfzXj778XIy8pP8-Mg4XklbPSjtDOGrk1Q&h=CBTNGUspt2e483OHklzdcBm50b93b1530KdTTJciXaE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-787d7137-352d-11f1-bbbb-44a3bbbaa7c4?api-version=2026-01-01-preview&t=639114572803976930&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=M9WR8R-w2dUe1u_kIdvWl6HA1Sdz3Wt2eOE49wJGu3TLorzit_v7lS91zgHDw6rmKcbfDhtPAdJfWfZjpQ8NiOvSi5wVRxdteE31meIEQ3n9h_xuMrI3b2CiHInUvgmrhbsBA-o38DBPF95TUvxRrRL9fRqrBhJTPanxq67A5-E-zyica26FnNDUPxZxurROGEyY7gdEdbztV7bMX5Fi-0fReF3cTswGWh05n9qF0uKISs_ji3nRDSSALGHpOWDQxgxGQuMed7oNRsQG1fKSrX7nxoQasfBPRX71fOtDMo9znHtwFPv6VPT7EKytg692WFmUQqE1xq0NsdMIEwukvw&h=GyHOQ7y3Snu8H7aFRuj5tumcu4G3Vcd7-0X_hXbR0yw pragma: - no-cache strict-transport-security: @@ -1558,11 +1564,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus/9e272d5f-2d3a-4f16-882e-a12b518daa4f + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/1ecd5de9-42c3-49be-8650-9e90798af4f8 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: F05CFEB630D740C584E9D51D85BCC65E Ref B: SJC211051201031 Ref C: 2026-03-24T01:26:25Z' + - 'Ref A: A64F31D233294C6FA7BDC114AE9648AD Ref B: BN1AA2051014037 Ref C: 2026-04-10T22:34:40Z' status: code: 202 message: Accepted @@ -1580,9 +1586,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.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/westus/operationResults/registries-7933e6cd-2720-11f1-928d-70a8a51b6037?api-version=2026-01-01-preview&t=639099123858387656&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=C-7XW9MwYPnVL0dbAg7kajmzh9EDK62soXTUq7BFOl3XOP8dn6uyq_Qp82_Yg5YAZWyHgVF_SVW8rvrzcHJ9FIQMjM9UzP7XdGvBGnwjVvh3QU4-zcEUSeL1f4KZ5oj0SUX80oqRVMD8Zr23LTuDBX3en0lfu9pajH3OWlMMdO61qgw5FV6vdJtV2cxULWwcXBf1Hy8hlBtr2NpoivkO4hqRbMSO-4f6PyGvVYiES3YKqwkxQfz_EzVdYDZG09pdvKNWfu-SMAXU17ZSNAEWR1m4qnQXqlJQoXuYVo4dV11sH1brl-cVAfzXj778XIy8pP8-Mg4XklbPSjtDOGrk1Q&h=CBTNGUspt2e483OHklzdcBm50b93b1530KdTTJciXaE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/delete-clireg000002-787d7137-352d-11f1-bbbb-44a3bbbaa7c4?api-version=2026-01-01-preview&t=639114572803976930&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=M9WR8R-w2dUe1u_kIdvWl6HA1Sdz3Wt2eOE49wJGu3TLorzit_v7lS91zgHDw6rmKcbfDhtPAdJfWfZjpQ8NiOvSi5wVRxdteE31meIEQ3n9h_xuMrI3b2CiHInUvgmrhbsBA-o38DBPF95TUvxRrRL9fRqrBhJTPanxq67A5-E-zyica26FnNDUPxZxurROGEyY7gdEdbztV7bMX5Fi-0fReF3cTswGWh05n9qF0uKISs_ji3nRDSSALGHpOWDQxgxGQuMed7oNRsQG1fKSrX7nxoQasfBPRX71fOtDMo9znHtwFPv6VPT7EKytg692WFmUQqE1xq0NsdMIEwukvw&h=GyHOQ7y3Snu8H7aFRuj5tumcu4G3Vcd7-0X_hXbR0yw response: body: string: '' @@ -1592,7 +1598,7 @@ interactions: content-length: - '0' date: - - Tue, 24 Mar 2026 01:26:36 GMT + - Fri, 10 Apr 2026 22:34:51 GMT expires: - '-1' pragma: @@ -1604,11 +1610,11 @@ interactions: x-content-type-options: - nosniff x-ms-operation-identifier: - - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=68abb7a6-9056-4d60-bf87-3b50a45559cd/westus2/1cf85a56-c600-415e-a31a-258e731d722b + - tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47,objectId=6be58acb-6e1e-4e5a-aa2b-6474dc5023eb/eastus/774d04c3-3922-4e4e-b31f-bd05c9ccb8f1 x-ms-ratelimit-remaining-subscription-global-reads: - '16499' x-msedge-ref: - - 'Ref A: 8500DF02431340779094BFBDCB86F5A2 Ref B: SJC211051201033 Ref C: 2026-03-24T01:26:36Z' + - 'Ref A: E01CC07A79CD40A4AA528F555782E36B Ref B: BN1AA2051014023 Ref C: 2026-04-10T22:34:51Z' status: code: 200 message: OK 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 229f124b687..aa0844a0516 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 @@ -45,12 +45,15 @@ def _core_registry_scenario(self, registry_name, resource_group, location): checks=[self.check('status', "enabled"), self.check('days', 30)]) - # test content-trust - self.cmd('acr config content-trust update -n {} --status enabled'.format(registry_name), - checks=[self.check('status', "enabled")]) + # test content-trust - 'enabled' is no longer a valid value for --status due to DCT deprecation + with self.assertRaises(SystemExit): + self.cmd('acr config content-trust update -n {} --status enabled'.format(registry_name)) + + self.cmd('acr config content-trust update -n {} --status disabled --yes'.format(registry_name), + checks=[self.check('status', "disabled")]) self.cmd('acr config content-trust show -n {}'.format(registry_name), - checks=[self.check('status', "enabled")]) + checks=[self.check('status', "disabled")]) # test soft-delete self.cmd('acr config soft-delete update -r {} --status enabled --days 30 --yes'.format(registry_name), From 0ebcf7a640f4b8803f907a801674c11f3b3e6eb2 Mon Sep 17 00:00:00 2001 From: Zoey Li Date: Fri, 10 Apr 2026 19:05:17 -0400 Subject: [PATCH 2/2] fix failure --- ...st_acr_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 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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 971f0c4407c..60110d74f3c 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 @@ -1227,7 +1227,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-01-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"AfWp78wGWeHN4uUMCd2DpqynaCk8QTGKw0Mtwbk6IM5rEeQX56NnJQQJ99CDAC4f1cMEqg7NAAACAZCRUZlf"},{"name":"password2","value":"MorhMfyXhlbE0yJ8ldt2qcptEVpvfW70uqjW4F4v5NItG1ACQsndJQQJ99CDAC4f1cMEqg7NAAACAZCRbg28"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' headers: api-supported-versions: - 2026-01-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 b8aab41cc3e..e78eb955132 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 @@ -1227,7 +1227,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-01-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"BOMKt9wg7iSWHh9U4mM4vSv3XGAfjjDllqcoAUxVjoREFn1oX2Q9JQQJ99CDAC4f1cMEqg7NAAACAZCRpbpx"},{"name":"password2","value":"6dco23IHw6DHdNUBfz5tPZ1EdDkIEGB9eL2q1PgZKMC7tnSmLzdiJQQJ99CDAC4f1cMEqg7NAAACAZCRQnL1"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' headers: api-supported-versions: - 2026-01-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 f830f83da95..6a472cc2ddf 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 @@ -1331,7 +1331,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-01-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"BVl4D4H8Wo34gN7Wdms1yhkuCNWTeC9L0ki0pWsIZ5b782fbm6DBJQQJ99CDAC4f1cMEqg7NAAACAZCRzn2o"},{"name":"password2","value":"4v369lMZjLU7mVfZrcKucpS6zLTbgMX1Ql6WxycWPDJdK3YnuCf9JQQJ99CDAC4f1cMEqg7NAAACAZCRw2aF"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' headers: api-supported-versions: - 2026-01-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 1d307e8d54b..708611a8236 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 @@ -1435,7 +1435,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-01-01-preview response: body: - string: '{"username":"clireg000002","passwords":[{"name":"password","value":"8YIv7KQ2MzWSmQsCMUcYU6CexDmSx9PblcghtwKAYpOsSOy6PI8lJQQJ99CDAC4f1cMEqg7NAAACAZCRKtu1"},{"name":"password2","value":"A2vp5BZfOpx4SHlAejcVXyHhlxgOufKvNr7Auzpl4p9whsbiTRfLJQQJ99CDAC4f1cMEqg7NAAACAZCRB4EA"}]}' + string: '{"username":"clireg000002","passwords":[{"name":"password","value":"***"},{"name":"password2","value":"***"}]}' headers: api-supported-versions: - 2026-01-01-preview