diff --git a/src/azure-cli-core/azure/cli/core/profiles/_shared.py b/src/azure-cli-core/azure/cli/core/profiles/_shared.py index 30567bc95f2..d26c4df92d7 100644 --- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py +++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py @@ -173,7 +173,7 @@ def default_api_version(self): 'role_definitions': '2018-01-01-preview', 'provider_operations_metadata': '2018-01-01-preview' }), - ResourceType.MGMT_CONTAINERREGISTRY: SDKProfile('2021-06-01-preview', { + ResourceType.MGMT_CONTAINERREGISTRY: SDKProfile('2021-08-01-preview', { 'agent_pools': '2019-06-01-preview', 'tasks': '2019-06-01-preview', 'task_runs': '2019-06-01-preview', 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 67ce78f4a88..66a05d794b9 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/_params.py +++ b/src/azure-cli/azure/cli/command_modules/acr/_params.py @@ -423,6 +423,7 @@ def load_arguments(self, _): # pylint: disable=too-many-statements c.argument('sync_window', options_list=['--sync-window', '-w'], help='Required parameter if --sync-schedule is present. Used to determine the schedule duration. Uses ISO 8601 duration format.') c.argument('sync_schedule', options_list=['--sync-schedule', '-s'], help='Optional parameter to define the sync schedule. Uses cron expression to determine the schedule. If not specified, the instance is considered always online and attempts to sync every minute.', required=False, default="* * * * *") c.argument('sync_message_ttl', help='Determine how long the sync messages will be kept in the cloud. Uses ISO 8601 duration format.', required=False, default="P2D") + c.argument('notifications', options_list=['--notifications'], nargs='+', help='List of artifact pattern for which notifications need to be generated. Use the format "--notifications [PATTERN1 PATTERN2 ...]".') with self.argument_context('acr connected-registry update') as c: c.argument('log_level', help='Set the log level for logging on the instance. Accepted log levels are Debug, Information, Warning, Error, and None.') @@ -433,6 +434,10 @@ def load_arguments(self, _): # pylint: disable=too-many-statements c.argument('sync_window', options_list=['--sync-window', '-w'], help='Used to determine the schedule duration. Uses ISO 8601 duration format.') c.argument('sync_schedule', options_list=['--sync-schedule', '-s'], help='Optional parameter to define the sync schedule. Uses cron expression to determine the schedule. If not specified, the instance is considered always online and attempts to sync every minute.') c.argument('sync_message_ttl', help='Determine how long the sync messages will be kept in the cloud. Uses ISO 8601 duration format.') + c.argument('add_notifications', options_list=['--add-notifications'], nargs='*', + help='List of artifact pattern to be added to notifications list. Use the format "--add-notifications [PATTERN1 PATTERN2 ...]".') + c.argument('remove_notifications', options_list=['--remove-notifications'], nargs='*', + help='List of artifact pattern to be removed from notifications list. Use the format "--remove-notifications [PATTERN1 PATTERN2 ...]".') with self.argument_context('acr connected-registry permissions') as c: c.argument('add_repos', options_list=['--add'], nargs='*', diff --git a/src/azure-cli/azure/cli/command_modules/acr/connected_registry.py b/src/azure-cli/azure/cli/command_modules/acr/connected_registry.py index 763e7326b5d..9a63bb17af7 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/connected_registry.py +++ b/src/azure-cli/azure/cli/command_modules/acr/connected_registry.py @@ -7,6 +7,7 @@ from msrest.exceptions import ValidationError from knack.log import get_logger from knack.util import CLIError +from azure.cli.core.azclierror import ArgumentUsageError from azure.cli.core.commands import LongRunningOperation from azure.cli.core.commands.client_factory import get_subscription_id from azure.cli.core.util import user_confirmation @@ -56,7 +57,8 @@ def acr_connected_registry_create(cmd, # pylint: disable=too-many-locals, too-m sync_message_ttl=None, sync_window=None, log_level=None, - sync_audit_logs_enabled=False): + sync_audit_logs_enabled=False, + notifications=None): if bool(sync_token_name) == bool(repositories): raise CLIError("usage error: you must provide either --sync-token-name or --repository, but not both.") @@ -104,6 +106,9 @@ def acr_connected_registry_create(cmd, # pylint: disable=too-many-locals, too-m client_token_list[i] = build_token_id( subscription_id, resource_group_name, registry_name, client_token_name) + notifications_set = set(list(notifications)) \ + if notifications else set() + ConnectedRegistry, LoggingProperties, SyncProperties, ParentProperties = cmd.get_models( 'ConnectedRegistry', 'LoggingProperties', 'SyncProperties', 'ParentProperties') connected_registry_create_parameters = ConnectedRegistry( @@ -122,7 +127,8 @@ def acr_connected_registry_create(cmd, # pylint: disable=too-many-locals, too-m logging=LoggingProperties( log_level=log_level, audit_log_status='Enabled' if sync_audit_logs_enabled else 'Disabled' - ) + ), + notifications_list=list(notifications_set) if notifications_set else None ) try: @@ -145,7 +151,9 @@ def acr_connected_registry_update(cmd, # pylint: disable=too-many-locals, too-m sync_window=None, log_level=None, sync_message_ttl=None, - sync_audit_logs_enabled=None): + sync_audit_logs_enabled=None, + add_notifications=None, + remove_notifications=None): _, resource_group_name = validate_managed_registry( cmd, registry_name, resource_group_name) subscription_id = get_subscription_id(cmd.cli_ctx) @@ -181,11 +189,30 @@ def acr_connected_registry_update(cmd, # pylint: disable=too-many-locals, too-m client_token_list = list(client_token_set) if client_token_set != current_client_token_set else None + # Add or remove from the current notifications list + add_notifications_set = set(list(add_notifications)) \ + if add_notifications else set() + + remove_notifications_set = set(list(remove_notifications)) \ + if remove_notifications else set() + + duplicate_notifications = set.intersection(add_notifications_set, remove_notifications_set) + if duplicate_notifications: + errors = sorted(duplicate_notifications) + raise ArgumentUsageError( + 'Update ambiguity. Duplicate notifications list were provided with ' + + '--add-notifications and --remove-notifications arguments.\n{}'.format(errors)) + + current_notifications_set = set(current_connected_registry.notifications_list) \ + if current_connected_registry.notifications_list else set() + notifications_set = current_notifications_set.union(add_notifications_set).difference(remove_notifications_set) + + notifications_list = list(notifications_set) if notifications_set != current_notifications_set else None + ConnectedRegistryUpdateParameters, SyncUpdateProperties, LoggingProperties = cmd.get_models( 'ConnectedRegistryUpdateParameters', 'SyncUpdateProperties', 'LoggingProperties') connected_registry_update_parameters = ConnectedRegistryUpdateParameters( sync_properties=SyncUpdateProperties( - token_id=current_connected_registry.parent.sync_properties.token_id, schedule=sync_schedule, message_ttl=sync_message_ttl, sync_window=sync_window @@ -194,7 +221,8 @@ def acr_connected_registry_update(cmd, # pylint: disable=too-many-locals, too-m log_level=log_level, audit_log_status=sync_audit_logs_enabled ), - client_token_ids=client_token_list + client_token_ids=client_token_list, + notifications_list=notifications_list ) try: @@ -548,12 +576,13 @@ def _update_repo_permissions(cmd, actions=current_actions ) - return scope_map_client.begin_update( + poller = scope_map_client.begin_update( resource_group_name, registry_name, sync_scope_map_name, scope_map_update_parameters ) + return LongRunningOperation(cmd.cli_ctx)(poller) def _get_scope_map_actions_set(repos, actions): diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_agentpool.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_agentpool.yaml index fbc4e42cfc3..38834fac3bc 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_agentpool.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_agentpool.yaml @@ -18,26 +18,26 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:02:36.4707204+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:02:36.4707204+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-11-04T06:02:36.4707204Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-11-04T06:02:41.4302659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:22.2611378Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:24.0084295+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-cb874e30-3d34-11ec-97c5-f48e389cc17c?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-5d45dfee-69b4-11ec-a0a9-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: - - '1362' + - '1279' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:02:43 GMT + - Thu, 30 Dec 2021 21:06:24 GMT expires: - '-1' pragma: @@ -49,7 +49,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1192' status: code: 201 message: Created @@ -67,18 +67,18 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-cb874e30-3d34-11ec-97c5-f48e389cc17c?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-5d45dfee-69b4-11ec-a0a9-00155d249691?api-version=2021-08-01-preview response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-cb874e30-3d34-11ec-97c5-f48e389cc17c?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-5d45dfee-69b4-11ec-a0a9-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: @@ -86,7 +86,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:02:53 GMT + - Thu, 30 Dec 2021 21:06:33 GMT expires: - '-1' pragma: @@ -118,24 +118,24 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:02:36.4707204+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:02:36.4707204+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-11-04T06:02:36.4707204Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-11-04T06:02:41.4302659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:22.2611378Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:24.0084295+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1363' + - '1280' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:02:53 GMT + - Thu, 30 Dec 2021 21:06:34 GMT expires: - '-1' pragma: @@ -174,21 +174,21 @@ interactions: ParameterSetName: - -n --subnet-name -g -l User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.2.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"agentvnets\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets\",\r\n - \ \"etag\": \"W/\\\"267016b2-6c14-47b3-8feb-6f509fb4b808\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5a17f198-042a-4d82-979d-5e85b40d7903\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"891d4de8-1bf2-40c3-87ee-bf386dd49dfe\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"391e25c4-43ed-4461-8147-321cb2e7f893\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"agentsubnets\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets\",\r\n - \ \"etag\": \"W/\\\"267016b2-6c14-47b3-8feb-6f509fb4b808\\\"\",\r\n + \ \"etag\": \"W/\\\"5a17f198-042a-4d82-979d-5e85b40d7903\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -199,15 +199,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ce55b5ec-0e7d-4345-b6ba-9efd09d957a5?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b5386a67-f899-414d-be1e-fda84524d9e9?api-version=2021-05-01 cache-control: - no-cache content-length: - - '1428' + - '1310' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:02:59 GMT + - Thu, 30 Dec 2021 21:06:39 GMT expires: - '-1' pragma: @@ -220,9 +220,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - abd38095-f7d1-4339-bc84-186aba8216a6 + - dc64daa4-70a8-4ece-8195-fa1f5cc2fb87 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -240,9 +240,9 @@ interactions: ParameterSetName: - -n --subnet-name -g -l User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.2.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ce55b5ec-0e7d-4345-b6ba-9efd09d957a5?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b5386a67-f899-414d-be1e-fda84524d9e9?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -254,7 +254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:03:03 GMT + - Thu, 30 Dec 2021 21:06:42 GMT expires: - '-1' pragma: @@ -271,7 +271,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6f19d68c-721c-4d23-9449-1984bcd62d7b + - 4670df4a-9a3d-410b-a4d4-1f4a0787ae80 status: code: 200 message: OK @@ -289,21 +289,21 @@ interactions: ParameterSetName: - -n --subnet-name -g -l User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.2.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"agentvnets\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets\",\r\n - \ \"etag\": \"W/\\\"f5746f5e-c721-41a9-bf00-a68c23a8654b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"bfdbbdc9-c28e-4ad9-9680-9091b9268625\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"891d4de8-1bf2-40c3-87ee-bf386dd49dfe\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"391e25c4-43ed-4461-8147-321cb2e7f893\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"agentsubnets\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets\",\r\n - \ \"etag\": \"W/\\\"f5746f5e-c721-41a9-bf00-a68c23a8654b\\\"\",\r\n + \ \"etag\": \"W/\\\"bfdbbdc9-c28e-4ad9-9680-9091b9268625\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": @@ -314,13 +314,13 @@ interactions: cache-control: - no-cache content-length: - - '1430' + - '1312' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:03:03 GMT + - Thu, 30 Dec 2021 21:06:42 GMT etag: - - W/"f5746f5e-c721-41a9-bf00-a68c23a8654b" + - W/"bfdbbdc9-c28e-4ad9-9680-9091b9268625" expires: - '-1' pragma: @@ -337,7 +337,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a2ca3b85-997f-4c4d-a8ad-b8d591694019 + - 6a8a2c46-2ea7-4131-ac0b-a6227a992994 status: code: 200 message: OK @@ -355,21 +355,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:02:36.4707204Z","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:02:36.4707204Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs5fq2ahvr2dnj62hydby654j7jo5ftbfpbljbopocfnauhjdncfdmtwhkxcs42jlo/providers/Microsoft.ContainerRegistry/registries/cliregxhqecafbglygar","name":"cliregxhqecafbglygar","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"azureclitest@azuresdkteam.onmicrosoft.com","createdByType":"User","createdAt":"2021-11-04T02:15:02.2369938Z","lastModifiedBy":"azureclitest@azuresdkteam.onmicrosoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T02:15:02.2369938Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx5ai4qdiirwoxchbbot6nomrp2mbbgss7el6d5mtyycbft6j5c6njz37pgt6otzis/providers/Microsoft.ContainerRegistry/registries/cliregl42ot2htbniuuu","name":"cliregl42ot2htbniuuu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:35:35.6450638Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:35:35.6450638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2jrdtwxlozh33i7pmr2dg3mlx6m76m7jxmp23kzl5ndiekkjtoq3ur3ryyh4iwx6/providers/Microsoft.ContainerRegistry/registries/cliregkunelu63d5hheg","name":"cliregkunelu63d5hheg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:47:17.661553Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:47:17.661553Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoqpwjjlu3fzozq3kzkjifoxvlfh6hstslnndia7d2acwql6zdjpmaykgdfnauyxok/providers/Microsoft.ContainerRegistry/registries/cliregoy33bdvmssh3us","name":"cliregoy33bdvmssh3us","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:24.5479778Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:39.5750581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '1265' + - '13096' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:03:05 GMT + - Thu, 30 Dec 2021 21:06:42 GMT expires: - '-1' pragma: @@ -397,24 +397,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:02:36.4707204+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:02:36.4707204+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-11-04T06:02:36.4707204Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-11-04T06:02:41.4302659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:22.2611378Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:24.0084295+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1363' + - '1280' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:03:08 GMT + - Thu, 30 Dec 2021 21:06:43 GMT expires: - '-1' pragma: @@ -450,24 +450,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1?api-version=2019-06-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S1","os":"Linux","provisioningState":"Creating"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:03:12.5658853+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:03:12.5658853+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S1","os":"Linux","provisioningState":"Creating"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:44.3082707+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:44.3082707+00:00"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview cache-control: - no-cache content-length: - - '663' + - '596' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:03:14 GMT + - Thu, 30 Dec 2021 21:06:44 GMT expires: - '-1' pragma: @@ -479,7 +479,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -497,10 +497,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -512,7 +512,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:03:24 GMT + - Thu, 30 Dec 2021 21:06:54 GMT expires: - '-1' pragma: @@ -544,10 +544,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -559,7 +559,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:03:54 GMT + - Thu, 30 Dec 2021 21:07:24 GMT expires: - '-1' pragma: @@ -591,10 +591,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -606,7 +606,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:04:25 GMT + - Thu, 30 Dec 2021 21:07:54 GMT expires: - '-1' pragma: @@ -638,10 +638,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -653,7 +653,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:04:55 GMT + - Thu, 30 Dec 2021 21:08:25 GMT expires: - '-1' pragma: @@ -685,10 +685,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -700,7 +700,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:05:26 GMT + - Thu, 30 Dec 2021 21:08:54 GMT expires: - '-1' pragma: @@ -732,10 +732,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -747,7 +747,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:05:56 GMT + - Thu, 30 Dec 2021 21:09:24 GMT expires: - '-1' pragma: @@ -779,10 +779,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -794,7 +794,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:06:26 GMT + - Thu, 30 Dec 2021 21:09:55 GMT expires: - '-1' pragma: @@ -826,10 +826,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -841,7 +841,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:06:56 GMT + - Thu, 30 Dec 2021 21:10:25 GMT expires: - '-1' pragma: @@ -873,10 +873,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -888,7 +888,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:07:28 GMT + - Thu, 30 Dec 2021 21:10:56 GMT expires: - '-1' pragma: @@ -920,10 +920,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -935,7 +935,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:07:58 GMT + - Thu, 30 Dec 2021 21:11:26 GMT expires: - '-1' pragma: @@ -967,10 +967,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -982,7 +982,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:08:28 GMT + - Thu, 30 Dec 2021 21:11:56 GMT expires: - '-1' pragma: @@ -1014,10 +1014,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -1029,7 +1029,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:08:58 GMT + - Thu, 30 Dec 2021 21:12:26 GMT expires: - '-1' pragma: @@ -1061,10 +1061,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -1076,7 +1076,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:09:28 GMT + - Thu, 30 Dec 2021 21:12:57 GMT expires: - '-1' pragma: @@ -1108,10 +1108,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -1123,7 +1123,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:10:00 GMT + - Thu, 30 Dec 2021 21:13:26 GMT expires: - '-1' pragma: @@ -1155,10 +1155,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -1170,7 +1170,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:10:30 GMT + - Thu, 30 Dec 2021 21:13:56 GMT expires: - '-1' pragma: @@ -1202,10 +1202,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -1217,7 +1217,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:11:00 GMT + - Thu, 30 Dec 2021 21:14:26 GMT expires: - '-1' pragma: @@ -1249,10 +1249,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -1264,7 +1264,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:11:30 GMT + - Thu, 30 Dec 2021 21:14:57 GMT expires: - '-1' pragma: @@ -1296,22 +1296,22 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/44357276-860d-4c8b-8bad-ba3e2bbcb1f6?api-version=2019-06-01-preview response: body: - string: '{"status":"Creating"}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '21' + - '22' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:12:01 GMT + - Thu, 30 Dec 2021 21:15:27 GMT expires: - '-1' pragma: @@ -1343,22 +1343,22 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1?api-version=2019-06-01-preview response: body: - string: '{"status":"Creating"}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S1","os":"Linux","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:44.3082707+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:44.3082707+00:00"}}' headers: cache-control: - no-cache content-length: - - '21' + - '597' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:12:31 GMT + - Thu, 30 Dec 2021 21:15:27 GMT expires: - '-1' pragma: @@ -1370,7 +1370,7 @@ interactions: transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff status: @@ -1380,7 +1380,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1388,34 +1388,29 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"status":"Creating"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2jrdtwxlozh33i7pmr2dg3mlx6m76m7jxmp23kzl5ndiekkjtoq3ur3ryyh4iwx6/providers/Microsoft.ContainerRegistry/registries/cliregkunelu63d5hheg","name":"cliregkunelu63d5hheg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:47:17.661553Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:47:17.661553Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '21' + - '12455' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:13:02 GMT + - Thu, 30 Dec 2021 21:15:28 GMT expires: - '-1' pragma: - no-cache - server: - - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -1427,7 +1422,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -1435,30 +1430,32 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"status":"Creating"}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:22.2611378Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:24.0084295+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '21' + - '1280' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:13:32 GMT + - Thu, 30 Dec 2021 21:15:29 GMT expires: - '-1' pragma: - no-cache server: - - nginx/1.15.10 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1471,35 +1468,42 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"location": "eastus", "properties": {"count": 1, "tier": "S2", "os": "Linux", + "virtualNetworkSubnetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - acr agentpool create Connection: - keep-alive + Content-Length: + - '276' + Content-Type: + - application/json ParameterSetName: - - -n -r + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2019-06-01-preview response: body: - string: '{"status":"Creating"}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Creating"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:15:30.675537+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:15:30.675537+00:00"}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/df9a6ee6-7d9e-4614-b54c-158bf2a7c741?api-version=2019-06-01-preview cache-control: - no-cache content-length: - - '21' + - '789' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:14:03 GMT + - Thu, 30 Dec 2021 21:15:31 GMT expires: - '-1' pragma: @@ -1508,15 +1512,13 @@ interactions: - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -1529,24 +1531,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/6941b537-a2c0-4d82-a12c-045d6acf9bda?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/df9a6ee6-7d9e-4614-b54c-158bf2a7c741?api-version=2019-06-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '22' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:14:33 GMT + - Thu, 30 Dec 2021 21:15:41 GMT expires: - '-1' pragma: @@ -1576,24 +1578,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/df9a6ee6-7d9e-4614-b54c-158bf2a7c741?api-version=2019-06-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S1","os":"Linux","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:03:12.5658853+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:03:12.5658853+00:00"}}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '664' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:14:33 GMT + - Thu, 30 Dec 2021 21:16:11 GMT expires: - '-1' pragma: @@ -1605,7 +1607,7 @@ interactions: transfer-encoding: - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff status: @@ -1615,7 +1617,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1625,27 +1627,32 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/df9a6ee6-7d9e-4614-b54c-158bf2a7c741?api-version=2019-06-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:02:36.4707204Z","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:02:36.4707204Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs5fq2ahvr2dnj62hydby654j7jo5ftbfpbljbopocfnauhjdncfdmtwhkxcs42jlo/providers/Microsoft.ContainerRegistry/registries/cliregxhqecafbglygar","name":"cliregxhqecafbglygar","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"azureclitest@azuresdkteam.onmicrosoft.com","createdByType":"User","createdAt":"2021-11-04T02:15:02.2369938Z","lastModifiedBy":"azureclitest@azuresdkteam.onmicrosoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T02:15:02.2369938Z"}}]}' + string: '{"status":"Creating"}' headers: cache-control: - no-cache content-length: - - '1265' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:14:35 GMT + - Thu, 30 Dec 2021 21:16:41 GMT expires: - '-1' pragma: - no-cache + server: + - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -1657,7 +1664,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1667,30 +1674,28 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/df9a6ee6-7d9e-4614-b54c-158bf2a7c741?api-version=2019-06-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:02:36.4707204+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:02:36.4707204+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-11-04T06:02:36.4707204Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-11-04T06:02:41.4302659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"status":"Creating"}' headers: - api-supported-versions: - - 2021-06-01-preview cache-control: - no-cache content-length: - - '1363' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:14:39 GMT + - Thu, 30 Dec 2021 21:17:11 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1702,58 +1707,6 @@ interactions: status: code: 200 message: OK -- request: - body: '{"location": "eastus", "properties": {"count": 1, "tier": "S2", "os": "Linux", - "virtualNetworkSubnetResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr agentpool create - Connection: - - keep-alive - Content-Length: - - '335' - Content-Type: - - application/json - ParameterSetName: - - -n -r --tier --subnet-id - User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2019-06-01-preview - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Creating"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:14:44.6234712+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:14:44.6234712+00:00"}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/8b29ea81-d834-4156-9ee1-1b2aa763975f?api-version=2019-06-01-preview - cache-control: - - no-cache - content-length: - - '917' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 04 Nov 2021 06:14:46 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - nginx/1.15.10 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created - request: body: null headers: @@ -1768,10 +1721,10 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/8b29ea81-d834-4156-9ee1-1b2aa763975f?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/df9a6ee6-7d9e-4614-b54c-158bf2a7c741?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -1783,7 +1736,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:14:56 GMT + - Thu, 30 Dec 2021 21:17:41 GMT expires: - '-1' pragma: @@ -1815,10 +1768,10 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/8b29ea81-d834-4156-9ee1-1b2aa763975f?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/df9a6ee6-7d9e-4614-b54c-158bf2a7c741?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -1830,7 +1783,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:15:26 GMT + - Thu, 30 Dec 2021 21:18:12 GMT expires: - '-1' pragma: @@ -1862,10 +1815,10 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/8b29ea81-d834-4156-9ee1-1b2aa763975f?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/df9a6ee6-7d9e-4614-b54c-158bf2a7c741?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -1877,7 +1830,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:15:56 GMT + - Thu, 30 Dec 2021 21:18:42 GMT expires: - '-1' pragma: @@ -1909,10 +1862,10 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/8b29ea81-d834-4156-9ee1-1b2aa763975f?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/df9a6ee6-7d9e-4614-b54c-158bf2a7c741?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -1924,7 +1877,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:16:28 GMT + - Thu, 30 Dec 2021 21:19:12 GMT expires: - '-1' pragma: @@ -1956,10 +1909,10 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/8b29ea81-d834-4156-9ee1-1b2aa763975f?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/df9a6ee6-7d9e-4614-b54c-158bf2a7c741?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -1971,7 +1924,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:16:58 GMT + - Thu, 30 Dec 2021 21:19:44 GMT expires: - '-1' pragma: @@ -2003,10 +1956,10 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/8b29ea81-d834-4156-9ee1-1b2aa763975f?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/df9a6ee6-7d9e-4614-b54c-158bf2a7c741?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -2018,7 +1971,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:17:28 GMT + - Thu, 30 Dec 2021 21:20:13 GMT expires: - '-1' pragma: @@ -2050,10 +2003,10 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/8b29ea81-d834-4156-9ee1-1b2aa763975f?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/df9a6ee6-7d9e-4614-b54c-158bf2a7c741?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -2065,7 +2018,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:17:58 GMT + - Thu, 30 Dec 2021 21:20:43 GMT expires: - '-1' pragma: @@ -2097,10 +2050,10 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/8b29ea81-d834-4156-9ee1-1b2aa763975f?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/df9a6ee6-7d9e-4614-b54c-158bf2a7c741?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -2112,7 +2065,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:18:28 GMT + - Thu, 30 Dec 2021 21:21:14 GMT expires: - '-1' pragma: @@ -2144,10 +2097,10 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/8b29ea81-d834-4156-9ee1-1b2aa763975f?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/df9a6ee6-7d9e-4614-b54c-158bf2a7c741?api-version=2019-06-01-preview response: body: string: '{"status":"Creating"}' @@ -2159,7 +2112,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:19:00 GMT + - Thu, 30 Dec 2021 21:21:44 GMT expires: - '-1' pragma: @@ -2191,22 +2144,22 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/8b29ea81-d834-4156-9ee1-1b2aa763975f?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/df9a6ee6-7d9e-4614-b54c-158bf2a7c741?api-version=2019-06-01-preview response: body: - string: '{"status":"Creating"}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '21' + - '22' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:19:31 GMT + - Thu, 30 Dec 2021 21:22:14 GMT expires: - '-1' pragma: @@ -2238,22 +2191,22 @@ interactions: ParameterSetName: - -n -r --tier --subnet-id User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/8b29ea81-d834-4156-9ee1-1b2aa763975f?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2019-06-01-preview response: body: - string: '{"status":"Creating"}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:15:30.675537+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:15:30.675537+00:00"}}' headers: cache-control: - no-cache content-length: - - '21' + - '790' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:20:01 GMT + - Thu, 30 Dec 2021 21:22:14 GMT expires: - '-1' pragma: @@ -2265,7 +2218,7 @@ interactions: transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff status: @@ -2275,42 +2228,37 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool create + - acr agentpool list Connection: - keep-alive ParameterSetName: - - -n -r --tier --subnet-id + - -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/8b29ea81-d834-4156-9ee1-1b2aa763975f?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"status":"Creating"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '21' + - '11849' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:20:31 GMT + - Thu, 30 Dec 2021 21:22:16 GMT expires: - '-1' pragma: - no-cache - server: - - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -2322,38 +2270,40 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool create + - acr agentpool list Connection: - keep-alive ParameterSetName: - - -n -r --tier --subnet-id + - -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/8b29ea81-d834-4156-9ee1-1b2aa763975f?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"status":"Creating"}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:22.2611378Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:24.0084295+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '21' + - '1280' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:21:01 GMT + - Thu, 30 Dec 2021 21:22:16 GMT expires: - '-1' pragma: - no-cache server: - - nginx/1.15.10 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2369,32 +2319,32 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool create + - acr agentpool list Connection: - keep-alive ParameterSetName: - - -n -r --tier --subnet-id + - -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationStatuses/8b29ea81-d834-4156-9ee1-1b2aa763975f?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools?api-version=2019-06-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:15:30.675537+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:15:30.675537+00:00"}},{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S1","os":"Linux","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:44.3082707+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:44.3082707+00:00"}}]}' headers: cache-control: - no-cache content-length: - - '22' + - '1400' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:21:31 GMT + - Thu, 30 Dec 2021 21:22:17 GMT expires: - '-1' pragma: @@ -2406,7 +2356,7 @@ interactions: transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff status: @@ -2416,44 +2366,39 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool create + - acr agentpool delete Connection: - keep-alive ParameterSetName: - - -n -r --tier --subnet-id + - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:14:44.6234712+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:14:44.6234712+00:00"}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '918' + - '11849' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:21:32 GMT + - Thu, 30 Dec 2021 21:22:17 GMT expires: - '-1' pragma: - no-cache - server: - - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - - Accept-Encoding,Accept-Encoding + - Accept-Encoding x-content-type-options: - nosniff status: @@ -2467,33 +2412,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool list + - acr agentpool delete Connection: - keep-alive ParameterSetName: - - -r + - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:02:36.4707204Z","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:02:36.4707204Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs5fq2ahvr2dnj62hydby654j7jo5ftbfpbljbopocfnauhjdncfdmtwhkxcs42jlo/providers/Microsoft.ContainerRegistry/registries/cliregxhqecafbglygar","name":"cliregxhqecafbglygar","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"azureclitest@azuresdkteam.onmicrosoft.com","createdByType":"User","createdAt":"2021-11-04T02:15:02.2369938Z","lastModifiedBy":"azureclitest@azuresdkteam.onmicrosoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T02:15:02.2369938Z"}}]}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:22.2611378Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:24.0084295+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1265' + - '1280' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:21:35 GMT + - Thu, 30 Dec 2021 21:22:18 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -2509,47 +2461,47 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool list + - acr agentpool delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - - -r + - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2019-06-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:02:36.4707204+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:02:36.4707204+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-11-04T06:02:36.4707204Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-11-04T06:02:41.4302659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:15:30.675537+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:15:30.675537+00:00"}}' headers: - api-supported-versions: - - 2021-06-01-preview cache-control: - no-cache content-length: - - '1363' + - '789' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:21:38 GMT + - Thu, 30 Dec 2021 21:22:19 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2558,28 +2510,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool list + - acr agentpool delete Connection: - keep-alive ParameterSetName: - - -r + - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2019-06-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:14:44.6234712+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:14:44.6234712+00:00"}},{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S1","os":"Linux","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:03:12.5658853+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:03:12.5658853+00:00"}}]}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:15:30.675537+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:15:30.675537+00:00"}}' headers: cache-control: - no-cache content-length: - - '1595' + - '789' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:21:40 GMT + - Thu, 30 Dec 2021 21:22:19 GMT expires: - '-1' pragma: @@ -2601,7 +2553,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2611,39 +2563,42 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:02:36.4707204Z","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:02:36.4707204Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs5fq2ahvr2dnj62hydby654j7jo5ftbfpbljbopocfnauhjdncfdmtwhkxcs42jlo/providers/Microsoft.ContainerRegistry/registries/cliregxhqecafbglygar","name":"cliregxhqecafbglygar","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"azureclitest@azuresdkteam.onmicrosoft.com","createdByType":"User","createdAt":"2021-11-04T02:15:02.2369938Z","lastModifiedBy":"azureclitest@azuresdkteam.onmicrosoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T02:15:02.2369938Z"}}]}' + string: '{"status":"Deleting"}' headers: cache-control: - no-cache content-length: - - '1265' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:21:43 GMT + - Thu, 30 Dec 2021 21:22:29 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache + server: + - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2653,95 +2608,89 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:02:36.4707204+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:02:36.4707204+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-11-04T06:02:36.4707204Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-11-04T06:02:41.4302659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"status":"Deleting"}' headers: - api-supported-versions: - - 2021-06-01-preview cache-control: - no-cache content-length: - - '1363' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:21:45 GMT + - Thu, 30 Dec 2021 21:22:39 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - acr agentpool delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) - method: DELETE + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2019-06-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:14:44.6234712+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:14:44.6234712+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:15:30.675537+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:15:30.675537+00:00"}}' headers: cache-control: - no-cache content-length: - - '917' + - '789' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:21:48 GMT + - Thu, 30 Dec 2021 21:22:49 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview pragma: - no-cache server: - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2751,39 +2700,37 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:14:44.6234712+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:14:44.6234712+00:00"}}' + string: '{"status":"Deleting"}' headers: cache-control: - no-cache content-length: - - '917' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:21:48 GMT + - Thu, 30 Dec 2021 21:22:49 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache server: - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -2798,10 +2745,10 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: string: '{"status":"Deleting"}' @@ -2813,11 +2760,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:21:58 GMT + - Thu, 30 Dec 2021 21:23:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache server: @@ -2843,10 +2790,10 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: string: '{"status":"Deleting"}' @@ -2858,11 +2805,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:22:08 GMT + - Thu, 30 Dec 2021 21:23:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache server: @@ -2888,22 +2835,22 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2019-06-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:14:44.6234712+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:14:44.6234712+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:15:30.675537+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:15:30.675537+00:00"}}' headers: cache-control: - no-cache content-length: - - '917' + - '789' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:22:18 GMT + - Thu, 30 Dec 2021 21:23:20 GMT expires: - '-1' pragma: @@ -2935,10 +2882,10 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: string: '{"status":"Deleting"}' @@ -2950,11 +2897,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:22:18 GMT + - Thu, 30 Dec 2021 21:23:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache server: @@ -2980,10 +2927,10 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: string: '{"status":"Deleting"}' @@ -2995,11 +2942,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:22:29 GMT + - Thu, 30 Dec 2021 21:23:30 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache server: @@ -3025,10 +2972,10 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: string: '{"status":"Deleting"}' @@ -3040,11 +2987,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:22:39 GMT + - Thu, 30 Dec 2021 21:23:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache server: @@ -3070,22 +3017,22 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2019-06-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:14:44.6234712+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:14:44.6234712+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:15:30.675537+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:15:30.675537+00:00"}}' headers: cache-control: - no-cache content-length: - - '917' + - '789' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:22:48 GMT + - Thu, 30 Dec 2021 21:23:49 GMT expires: - '-1' pragma: @@ -3117,10 +3064,10 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: string: '{"status":"Deleting"}' @@ -3132,11 +3079,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:22:49 GMT + - Thu, 30 Dec 2021 21:23:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache server: @@ -3162,10 +3109,10 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: string: '{"status":"Deleting"}' @@ -3177,11 +3124,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:23:00 GMT + - Thu, 30 Dec 2021 21:24:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache server: @@ -3207,10 +3154,10 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: string: '{"status":"Deleting"}' @@ -3222,11 +3169,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:23:10 GMT + - Thu, 30 Dec 2021 21:24:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache server: @@ -3252,22 +3199,22 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2019-06-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:14:44.6234712+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:14:44.6234712+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:15:30.675537+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:15:30.675537+00:00"}}' headers: cache-control: - no-cache content-length: - - '917' + - '789' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:23:18 GMT + - Thu, 30 Dec 2021 21:24:19 GMT expires: - '-1' pragma: @@ -3299,10 +3246,10 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: string: '{"status":"Deleting"}' @@ -3314,11 +3261,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:23:20 GMT + - Thu, 30 Dec 2021 21:24:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache server: @@ -3344,10 +3291,10 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: string: '{"status":"Deleting"}' @@ -3359,11 +3306,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:23:32 GMT + - Thu, 30 Dec 2021 21:24:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache server: @@ -3389,10 +3336,10 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: string: '{"status":"Deleting"}' @@ -3404,11 +3351,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:23:42 GMT + - Thu, 30 Dec 2021 21:24:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache server: @@ -3434,22 +3381,22 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2019-06-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:14:44.6234712+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:14:44.6234712+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:15:30.675537+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:15:30.675537+00:00"}}' headers: cache-control: - no-cache content-length: - - '917' + - '789' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:23:49 GMT + - Thu, 30 Dec 2021 21:24:50 GMT expires: - '-1' pragma: @@ -3481,10 +3428,10 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: string: '{"status":"Deleting"}' @@ -3496,11 +3443,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:23:52 GMT + - Thu, 30 Dec 2021 21:24:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache server: @@ -3526,10 +3473,10 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: string: '{"status":"Deleting"}' @@ -3541,11 +3488,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:24:03 GMT + - Thu, 30 Dec 2021 21:25:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache server: @@ -3571,22 +3518,67 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/bdacbeea-1de1-4ac9-a361-faa7be4a3d5d?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Deleting"}' headers: cache-control: - no-cache content-length: - - '22' + - '21' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 21:25:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview + pragma: + - no-cache + server: + - nginx/1.15.10 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr agentpool delete + Connection: + - keep-alive + ParameterSetName: + - -n -r -y + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2019-06-01-preview + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":1,"tier":"S2","os":"Linux","virtualNetworkSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets/subnets/agentsubnets","provisioningState":"Deleting"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2","name":"agents2","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:15:30.675537+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:15:30.675537+00:00"}}' + headers: + cache-control: + - no-cache + content-length: + - '789' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:24:13 GMT + - Thu, 30 Dec 2021 21:25:21 GMT expires: - '-1' pragma: @@ -3598,7 +3590,7 @@ interactions: transfer-encoding: - chunked vary: - - Accept-Encoding + - Accept-Encoding,Accept-Encoding x-content-type-options: - nosniff status: @@ -3618,117 +3610,118 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2'' - under resource group ''clitest.rg000001'' was not found. For more details - please go to https://aka.ms/ARMResourceNotFoundFix"}}' + string: '{"status":"Deleting"}' headers: cache-control: - no-cache content-length: - - '325' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:24:19 GMT + - Thu, 30 Dec 2021 21:25:22 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache + server: + - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-failure-cause: - - gateway status: - code: 404 - message: Not Found + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool delete Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:02:36.4707204Z","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:02:36.4707204Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs5fq2ahvr2dnj62hydby654j7jo5ftbfpbljbopocfnauhjdncfdmtwhkxcs42jlo/providers/Microsoft.ContainerRegistry/registries/cliregxhqecafbglygar","name":"cliregxhqecafbglygar","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"azureclitest@azuresdkteam.onmicrosoft.com","createdByType":"User","createdAt":"2021-11-04T02:15:02.2369938Z","lastModifiedBy":"azureclitest@azuresdkteam.onmicrosoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T02:15:02.2369938Z"}}]}' + string: '{"status":"Deleting"}' headers: cache-control: - no-cache content-length: - - '1265' + - '21' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:24:22 GMT + - Thu, 30 Dec 2021 21:25:32 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview pragma: - no-cache + server: + - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool delete Connection: - keep-alive ParameterSetName: - - -n -r -c + - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2/operationResults/e3a1360e-2d81-4067-92ec-dc864e2f42fc?api-version=2019-06-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:02:36.4707204+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:02:36.4707204+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-11-04T06:02:36.4707204Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-11-04T06:02:41.4302659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"status":"Succeeded"}' headers: - api-supported-versions: - - 2021-06-01-preview cache-control: - no-cache content-length: - - '1363' + - '22' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:24:25 GMT + - Thu, 30 Dec 2021 21:25:42 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3741,61 +3734,55 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"count": 2}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr agentpool update + - acr agentpool delete Connection: - keep-alive - Content-Length: - - '28' - Content-Type: - - application/json ParameterSetName: - - -n -r -c + - -n -r -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1?api-version=2019-06-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2?api-version=2019-06-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":2,"tier":"S1","os":"Linux","provisioningState":"Updating"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:03:12.5658853+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:24:26.7632655+00:00"}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents2'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview cache-control: - no-cache content-length: - - '663' + - '258' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:24:27 GMT + - Thu, 30 Dec 2021 21:25:50 GMT expires: - '-1' pragma: - no-cache - server: - - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' + x-ms-failure-cause: + - gateway status: - code: 201 - message: Created + code: 404 + message: Not Found - request: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -3805,32 +3792,27 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"status":"Updating"}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '21' + - '11849' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:24:37 GMT + - Thu, 30 Dec 2021 21:25:51 GMT expires: - '-1' pragma: - no-cache - server: - - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -3842,7 +3824,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -3852,28 +3834,30 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"status":"Updating"}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:22.2611378Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:24.0084295+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '21' + - '1280' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:25:07 GMT + - Thu, 30 Dec 2021 21:25:51 GMT expires: - '-1' pragma: - no-cache server: - - nginx/1.15.10 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -3886,35 +3870,41 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"count": 2}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - acr agentpool update Connection: - keep-alive + Content-Length: + - '28' + Content-Type: + - application/json ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1?api-version=2019-06-01-preview response: body: - string: '{"status":"Updating"}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":2,"tier":"S1","os":"Linux","provisioningState":"Updating"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:44.3082707+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:25:52.7162196+00:00"}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview cache-control: - no-cache content-length: - - '21' + - '596' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:25:38 GMT + - Thu, 30 Dec 2021 21:25:52 GMT expires: - '-1' pragma: @@ -3923,15 +3913,13 @@ interactions: - nginx/1.15.10 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1196' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -3946,10 +3934,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -3961,7 +3949,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:26:08 GMT + - Thu, 30 Dec 2021 21:26:02 GMT expires: - '-1' pragma: @@ -3993,10 +3981,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4008,7 +3996,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:26:38 GMT + - Thu, 30 Dec 2021 21:26:32 GMT expires: - '-1' pragma: @@ -4040,10 +4028,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4055,7 +4043,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:27:09 GMT + - Thu, 30 Dec 2021 21:27:03 GMT expires: - '-1' pragma: @@ -4087,10 +4075,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4102,7 +4090,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:27:40 GMT + - Thu, 30 Dec 2021 21:27:33 GMT expires: - '-1' pragma: @@ -4134,10 +4122,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4149,7 +4137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:28:10 GMT + - Thu, 30 Dec 2021 21:28:03 GMT expires: - '-1' pragma: @@ -4181,10 +4169,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4196,7 +4184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:28:40 GMT + - Thu, 30 Dec 2021 21:28:33 GMT expires: - '-1' pragma: @@ -4228,10 +4216,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4243,7 +4231,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:29:12 GMT + - Thu, 30 Dec 2021 21:29:04 GMT expires: - '-1' pragma: @@ -4275,10 +4263,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4290,7 +4278,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:29:42 GMT + - Thu, 30 Dec 2021 21:29:34 GMT expires: - '-1' pragma: @@ -4322,10 +4310,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4337,7 +4325,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:30:12 GMT + - Thu, 30 Dec 2021 21:30:04 GMT expires: - '-1' pragma: @@ -4369,10 +4357,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4384,7 +4372,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:30:42 GMT + - Thu, 30 Dec 2021 21:30:33 GMT expires: - '-1' pragma: @@ -4416,10 +4404,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4431,7 +4419,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:31:13 GMT + - Thu, 30 Dec 2021 21:31:05 GMT expires: - '-1' pragma: @@ -4463,10 +4451,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4478,7 +4466,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:31:44 GMT + - Thu, 30 Dec 2021 21:31:35 GMT expires: - '-1' pragma: @@ -4510,10 +4498,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4525,7 +4513,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:32:14 GMT + - Thu, 30 Dec 2021 21:32:05 GMT expires: - '-1' pragma: @@ -4557,10 +4545,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4572,7 +4560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:32:44 GMT + - Thu, 30 Dec 2021 21:32:34 GMT expires: - '-1' pragma: @@ -4604,10 +4592,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4619,7 +4607,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:33:15 GMT + - Thu, 30 Dec 2021 21:33:05 GMT expires: - '-1' pragma: @@ -4651,10 +4639,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4666,7 +4654,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:33:46 GMT + - Thu, 30 Dec 2021 21:33:35 GMT expires: - '-1' pragma: @@ -4698,10 +4686,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4713,7 +4701,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:34:16 GMT + - Thu, 30 Dec 2021 21:34:06 GMT expires: - '-1' pragma: @@ -4745,10 +4733,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Updating"}' @@ -4760,7 +4748,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:34:46 GMT + - Thu, 30 Dec 2021 21:34:35 GMT expires: - '-1' pragma: @@ -4792,10 +4780,10 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/f29ef695-bdea-4230-8f91-bade83d76170?api-version=2019-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1/operationStatuses/4b1ab129-2d2d-4a6d-aff2-3b1af9d56651?api-version=2019-06-01-preview response: body: string: '{"status":"Succeeded"}' @@ -4807,7 +4795,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:35:17 GMT + - Thu, 30 Dec 2021 21:35:06 GMT expires: - '-1' pragma: @@ -4839,22 +4827,22 @@ interactions: ParameterSetName: - -n -r -c User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1?api-version=2019-06-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":2,"tier":"S1","os":"Linux","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:03:12.5658853+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:24:26.7632655+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":2,"tier":"S1","os":"Linux","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:44.3082707+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:25:52.7162196+00:00"}}' headers: cache-control: - no-cache content-length: - - '664' + - '597' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:35:17 GMT + - Thu, 30 Dec 2021 21:35:06 GMT expires: - '-1' pragma: @@ -4886,21 +4874,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:02:36.4707204Z","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:02:36.4707204Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs5fq2ahvr2dnj62hydby654j7jo5ftbfpbljbopocfnauhjdncfdmtwhkxcs42jlo/providers/Microsoft.ContainerRegistry/registries/cliregxhqecafbglygar","name":"cliregxhqecafbglygar","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"azureclitest@azuresdkteam.onmicrosoft.com","createdByType":"User","createdAt":"2021-11-04T02:15:02.2369938Z","lastModifiedBy":"azureclitest@azuresdkteam.onmicrosoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T02:15:02.2369938Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '1265' + - '11849' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:35:20 GMT + - Thu, 30 Dec 2021 21:35:06 GMT expires: - '-1' pragma: @@ -4928,24 +4916,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:02:36.4707204+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:02:36.4707204+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-11-04T06:02:36.4707204Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-11-04T06:02:41.4302659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:22.2611378Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:24.0084295+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1363' + - '1280' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:35:22 GMT + - Thu, 30 Dec 2021 21:35:07 GMT expires: - '-1' pragma: @@ -4977,22 +4965,22 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1?api-version=2019-06-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":2,"tier":"S1","os":"Linux","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-04T06:03:12.5658853+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-04T06:24:26.7632655+00:00"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/agentPools","properties":{"count":2,"tier":"S1","os":"Linux","provisioningState":"Succeeded"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/agentPools/agents1","name":"agents1","location":"eastus","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:44.3082707+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:25:52.7162196+00:00"}}' headers: cache-control: - no-cache content-length: - - '664' + - '597' content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:35:23 GMT + - Thu, 30 Dec 2021 21:35:07 GMT expires: - '-1' pragma: @@ -5026,22 +5014,22 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.3 - (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: string: '' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Nov 2021 06:35:35 GMT + - Thu, 30 Dec 2021 21:35:10 GMT expires: - '-1' pragma: @@ -5073,7 +5061,7 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.2.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/agentvnets?api-version=2021-05-01 response: @@ -5083,17 +5071,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c63bd5ad-cab0-4c8a-8b59-eb3e24092db6?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/93410283-eba2-4413-bd52-3fe6b314b923?api-version=2021-05-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 04 Nov 2021 06:35:37 GMT + - Thu, 30 Dec 2021 21:35:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/c63bd5ad-cab0-4c8a-8b59-eb3e24092db6?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operationResults/93410283-eba2-4413-bd52-3fe6b314b923?api-version=2021-05-01 pragma: - no-cache server: @@ -5104,7 +5092,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b6589bfe-1c6d-4ba3-a763-ffa3c541fd29 + - 8309371e-dfd4-408b-986e-2e17db0b0680 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -5124,9 +5112,9 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-network/19.2.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/c63bd5ad-cab0-4c8a-8b59-eb3e24092db6?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/93410283-eba2-4413-bd52-3fe6b314b923?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -5138,7 +5126,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 04 Nov 2021 06:35:48 GMT + - Thu, 30 Dec 2021 21:35:20 GMT expires: - '-1' pragma: @@ -5155,7 +5143,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 90221bfa-6ece-453f-bcce-e9cf094cd8a1 + - af32a6f2-a6b1-45ee-9f7d-9fde761ecafd status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_connectedregistry.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_connectedregistry.yaml index ce432980fcb..c893c1368ff 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_connectedregistry.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_connectedregistry.yaml @@ -18,26 +18,26 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-2937d4bf-5678-11ec-aae1-00155d173227?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-1946e936-69d8-11ec-a126-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: - - '1359' + - '1279' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:39:46 GMT + - Fri, 31 Dec 2021 01:22:09 GMT expires: - '-1' pragma: @@ -67,18 +67,18 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-2937d4bf-5678-11ec-aae1-00155d173227?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-1946e936-69d8-11ec-a126-00155d249691?api-version=2021-08-01-preview response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-2937d4bf-5678-11ec-aae1-00155d173227?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-1946e936-69d8-11ec-a126-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: @@ -86,7 +86,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:39:57 GMT + - Fri, 31 Dec 2021 01:22:19 GMT expires: - '-1' pragma: @@ -118,24 +118,24 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1360' + - '1280' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:39:58 GMT + - Fri, 31 Dec 2021 01:22:20 GMT expires: - '-1' pragma: @@ -167,21 +167,21 @@ interactions: ParameterSetName: - -n --data-endpoint-enabled User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:39:59 GMT + - Fri, 31 Dec 2021 01:22:21 GMT expires: - '-1' pragma: @@ -209,24 +209,24 @@ interactions: ParameterSetName: - -n --data-endpoint-enabled User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1360' + - '1280' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:00 GMT + - Fri, 31 Dec 2021 01:22:22 GMT expires: - '-1' pragma: @@ -262,24 +262,24 @@ interactions: ParameterSetName: - -n --data-endpoint-enabled User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:04 GMT + - Fri, 31 Dec 2021 01:22:24 GMT expires: - '-1' pragma: @@ -313,21 +313,21 @@ interactions: ParameterSetName: - -n -r --repository User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:04 GMT + - Fri, 31 Dec 2021 01:22:24 GMT expires: - '-1' pragma: @@ -355,24 +355,24 @@ interactions: ParameterSetName: - -n -r --repository User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:06 GMT + - Fri, 31 Dec 2021 01:22:24 GMT expires: - '-1' pragma: @@ -404,8 +404,8 @@ interactions: ParameterSetName: - -n -r --repository User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedRegistry?api-version=2020-11-01-preview response: @@ -420,7 +420,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:08 GMT + - Fri, 31 Dec 2021 01:22:25 GMT expires: - '-1' pragma: @@ -459,24 +459,25 @@ interactions: ParameterSetName: - -n -r --repository User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedRegistry?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:09.308126+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:09.308126+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:09.4700306+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/content/write","repositories/repo1/content/delete","repositories/repo1/metadata/read","repositories/repo1/metadata/write","repositories/repo2/content/read","repositories/repo2/content/write","repositories/repo2/content/delete","repositories/repo2/metadata/read","repositories/repo2/metadata/write","repositories/repo3/content/read","repositories/repo3/content/write","repositories/repo3/content/delete","repositories/repo3/metadata/read","repositories/repo3/metadata/write","gateway/connectedregistry/config/read","gateway/connectedregistry/config/write","gateway/connectedregistry/message/read","gateway/connectedregistry/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:26.7620037+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:26.7620037+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:26.8463982+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/content/write","repositories/repo1/content/delete","repositories/repo1/metadata/read","repositories/repo1/metadata/write","repositories/repo2/content/read","repositories/repo2/content/write","repositories/repo2/content/delete","repositories/repo2/metadata/read","repositories/repo2/metadata/write","repositories/repo3/content/read","repositories/repo3/content/write","repositories/repo3/content/delete","repositories/repo3/metadata/read","repositories/repo3/metadata/write","gateway/connectedregistry/config/read","gateway/connectedregistry/config/write","gateway/connectedregistry/message/read","gateway/connectedregistry/message/write"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1399' + - '1336' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:09 GMT + - Fri, 31 Dec 2021 01:22:26 GMT expires: - '-1' pragma: @@ -509,32 +510,33 @@ interactions: Connection: - keep-alive Content-Length: - - '295' + - '228' Content-Type: - application/json ParameterSetName: - -n -r --repository User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:10.1297615+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:10.1297615+00:00"},"properties":{"creationDate":"2021-12-06T09:40:11.4600805+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedRegistry","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:27.5005243+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:27.5005243+00:00"},"properties":{"creationDate":"2021-12-31T01:22:27.8266532+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedRegistry","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry/operationStatuses/token-39163ad3-5678-11ec-a475-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry/operationStatuses/token-22f33502-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '993' + - '843' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:10 GMT + - Fri, 31 Dec 2021 01:22:27 GMT expires: - '-1' pragma: @@ -564,18 +566,19 @@ interactions: ParameterSetName: - -n -r --repository User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry/operationStatuses/token-39163ad3-5678-11ec-a475-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry/operationStatuses/token-22f33502-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry/operationStatuses/token-39163ad3-5678-11ec-a475-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry/operationStatuses/token-22f33502-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: @@ -583,7 +586,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:21 GMT + - Fri, 31 Dec 2021 01:22:37 GMT expires: - '-1' pragma: @@ -615,24 +618,25 @@ interactions: ParameterSetName: - -n -r --repository User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:10.1297615+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:10.1297615+00:00"},"properties":{"creationDate":"2021-12-06T09:40:11.4600805+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedRegistry","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:27.5005243+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:27.5005243+00:00"},"properties":{"creationDate":"2021-12-31T01:22:27.8266532+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/connectedRegistry","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '994' + - '844' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:21 GMT + - Fri, 31 Dec 2021 01:22:37 GMT expires: - '-1' pragma: @@ -665,31 +669,31 @@ interactions: Connection: - keep-alive Content-Length: - - '437' + - '370' Content-Type: - application/json ParameterSetName: - -n -r --repository User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:23.468157+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:23.468157+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:39.3451639+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:39.3451639+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '1217' + - '1079' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:23 GMT + - Fri, 31 Dec 2021 01:22:39 GMT expires: - '-1' pragma: @@ -705,7 +709,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -723,21 +727,21 @@ interactions: ParameterSetName: - -r -n --repository --gateway --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:23 GMT + - Fri, 31 Dec 2021 01:22:39 GMT expires: - '-1' pragma: @@ -765,8 +769,8 @@ interactions: ParameterSetName: - -r -n --repository --gateway --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: @@ -781,7 +785,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:24 GMT + - Fri, 31 Dec 2021 01:22:40 GMT expires: - '-1' pragma: @@ -815,24 +819,25 @@ interactions: ParameterSetName: - -r -n --repository --gateway --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:25.0847246+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:25.0847246+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/rootregistry/message/read","gateway/rootregistry/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:41.051678+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:41.051678+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/rootregistry/message/read","gateway/rootregistry/message/write"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '926' + - '859' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:24 GMT + - Fri, 31 Dec 2021 01:22:40 GMT expires: - '-1' pragma: @@ -848,7 +853,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -865,32 +870,33 @@ interactions: Connection: - keep-alive Content-Length: - - '297' + - '230' Content-Type: - application/json ParameterSetName: - -r -n --repository --gateway --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:25.8247413+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:25.8247413+00:00"},"properties":{"creationDate":"2021-12-06T09:40:27.1922099+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:41.5903391+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:41.5903391+00:00"},"properties":{"creationDate":"2021-12-31T01:22:41.9324827+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken/operationStatuses/token-446dd9ca-5678-11ec-a842-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken/operationStatuses/token-2c24a5fc-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '979' + - '829' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:26 GMT + - Fri, 31 Dec 2021 01:22:41 GMT expires: - '-1' pragma: @@ -902,7 +908,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -920,18 +926,19 @@ interactions: ParameterSetName: - -r -n --repository --gateway --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken/operationStatuses/token-446dd9ca-5678-11ec-a842-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken/operationStatuses/token-2c24a5fc-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken/operationStatuses/token-446dd9ca-5678-11ec-a842-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken/operationStatuses/token-2c24a5fc-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: @@ -939,7 +946,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:36 GMT + - Fri, 31 Dec 2021 01:22:51 GMT expires: - '-1' pragma: @@ -971,24 +978,25 @@ interactions: ParameterSetName: - -r -n --repository --gateway --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:25.8247413+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:25.8247413+00:00"},"properties":{"creationDate":"2021-12-06T09:40:27.1922099+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:41.5903391+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:41.5903391+00:00"},"properties":{"creationDate":"2021-12-31T01:22:41.9324827+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '980' + - '830' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:37 GMT + - Fri, 31 Dec 2021 01:22:51 GMT expires: - '-1' pragma: @@ -1020,21 +1028,21 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:39 GMT + - Fri, 31 Dec 2021 01:22:51 GMT expires: - '-1' pragma: @@ -1062,8 +1070,8 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map?api-version=2020-11-01-preview response: @@ -1078,7 +1086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:40 GMT + - Fri, 31 Dec 2021 01:22:53 GMT expires: - '-1' pragma: @@ -1110,24 +1118,25 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map","name":"clientToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:41.2653018+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:41.2653018+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:41.4297776+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map","name":"clientToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:53.939284+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:53.939284+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:54.0003361+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '751' + - '684' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:41 GMT + - Fri, 31 Dec 2021 01:22:53 GMT expires: - '-1' pragma: @@ -1143,7 +1152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1160,32 +1169,33 @@ interactions: Connection: - keep-alive Content-Length: - - '299' + - '232' Content-Type: - application/json ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken","name":"clientToken","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:42.07512+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:42.07512+00:00"},"properties":{"creationDate":"2021-12-06T09:40:43.3691326+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken","name":"clientToken","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:54.5979059+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:54.5979059+00:00"},"properties":{"creationDate":"2021-12-31T01:22:54.9476414+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken/operationStatuses/token-4d588961-5678-11ec-bf6f-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken/operationStatuses/token-33cc82c0-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '981' + - '835' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:43 GMT + - Fri, 31 Dec 2021 01:22:55 GMT expires: - '-1' pragma: @@ -1215,18 +1225,19 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken/operationStatuses/token-4d588961-5678-11ec-bf6f-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken/operationStatuses/token-33cc82c0-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken/operationStatuses/token-4d588961-5678-11ec-bf6f-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken/operationStatuses/token-33cc82c0-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: @@ -1234,7 +1245,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:53 GMT + - Fri, 31 Dec 2021 01:23:05 GMT expires: - '-1' pragma: @@ -1266,24 +1277,25 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken","name":"clientToken","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:42.07512+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:42.07512+00:00"},"properties":{"creationDate":"2021-12-06T09:40:43.3691326+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken","name":"clientToken","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:54.5979059+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:54.5979059+00:00"},"properties":{"creationDate":"2021-12-31T01:22:54.9476414+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '982' + - '836' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:54 GMT + - Fri, 31 Dec 2021 01:23:05 GMT expires: - '-1' pragma: @@ -1313,23 +1325,23 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r --sync-token -m --log-level -s -w --client-tokens + - -n -r --sync-token -m --log-level -s -w --client-tokens --notifications User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:54 GMT + - Fri, 31 Dec 2021 01:23:04 GMT expires: - '-1' pragma: @@ -1355,26 +1367,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r --sync-token -m --log-level -s -w --client-tokens + - -n -r --sync-token -m --log-level -s -w --client-tokens --notifications User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:56 GMT + - Fri, 31 Dec 2021 01:23:05 GMT expires: - '-1' pragma: @@ -1397,7 +1409,8 @@ interactions: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken", "schedule": "0 0/10 * * *", "syncWindow": "PT4H", "messageTtl": "P2D"}}, "clientTokenIds": ["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"], - "logging": {"logLevel": "Warning", "auditLogStatus": "Disabled"}}}' + "logging": {"logLevel": "Warning", "auditLogStatus": "Disabled"}, "notificationsList": + ["hello-world:tag:push"]}}' headers: Accept: - application/json @@ -1408,31 +1421,31 @@ interactions: Connection: - keep-alive Content-Length: - - '704' + - '617' Content-Type: - application/json ParameterSetName: - - -n -r --sync-token -m --log-level -s -w --client-tokens + - -n -r --sync-token -m --log-level -s -w --client-tokens --notifications User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:57.8447161+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:57.8447161+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 - 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"}}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:07.5264917+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:07.5264917+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 + 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"]}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '1472' + - '1310' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:58 GMT + - Fri, 31 Dec 2021 01:23:07 GMT expires: - '-1' pragma: @@ -1466,21 +1479,21 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:40:58 GMT + - Fri, 31 Dec 2021 01:23:07 GMT expires: - '-1' pragma: @@ -1508,24 +1521,24 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:01 GMT + - Fri, 31 Dec 2021 01:23:07 GMT expires: - '-1' pragma: @@ -1557,24 +1570,24 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:03 GMT + - Fri, 31 Dec 2021 01:23:09 GMT expires: - '-1' pragma: @@ -1606,25 +1619,25 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:57.8447161+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:57.8447161+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 - 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"}}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:07.5264917+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:07.5264917+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 + 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"]}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '1472' + - '1310' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:05 GMT + - Fri, 31 Dec 2021 01:23:09 GMT expires: - '-1' pragma: @@ -1656,26 +1669,26 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2021-08-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:23.468157+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:23.468157+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:57.8447161+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:57.8447161+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 - 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"}}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:39.3451639+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:39.3451639+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:07.5264917+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:07.5264917+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 + 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"]}}]}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '2702' + - '2402' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:05 GMT + - Fri, 31 Dec 2021 01:23:09 GMT expires: - '-1' pragma: @@ -1707,24 +1720,25 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:25.8247413+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:25.8247413+00:00"},"properties":{"creationDate":"2021-12-06T09:40:27.1922099+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:41.5903391+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:41.5903391+00:00"},"properties":{"creationDate":"2021-12-31T01:22:41.9324827+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '980' + - '830' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:06 GMT + - Fri, 31 Dec 2021 01:23:10 GMT expires: - '-1' pragma: @@ -1756,24 +1770,25 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:25.0847246+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:25.0847246+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/rootregistry/message/read","gateway/rootregistry/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:41.051678+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:41.051678+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/rootregistry/message/read","gateway/rootregistry/message/write"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '926' + - '859' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:06 GMT + - Fri, 31 Dec 2021 01:23:10 GMT expires: - '-1' pragma: @@ -1792,11 +1807,11 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"actions": ["repositories/repo2/metadata/read", "repositories/repo2/content/read", - "gateway/child/message/read", "repositories/repo1/content/read", "gateway/rootregistry/config/read", - "gateway/rootregistry/config/write", "gateway/rootregistry/message/write", "gateway/child/config/read", - "gateway/child/config/write", "gateway/rootregistry/message/read", "repositories/repo1/metadata/read", - "gateway/child/message/write"]}}' + body: '{"properties": {"actions": ["repositories/repo1/content/read", "repositories/repo1/metadata/read", + "repositories/repo2/metadata/read", "gateway/rootregistry/config/write", "gateway/rootregistry/message/write", + "gateway/rootregistry/config/read", "gateway/child/config/write", "gateway/rootregistry/message/read", + "gateway/child/message/read", "gateway/child/message/write", "gateway/child/config/read", + "repositories/repo2/content/read"]}}' headers: Accept: - application/json @@ -1813,26 +1828,27 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:07.8829497+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:07.8829497+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Updating","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/child/message/read","repositories/repo1/content/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/rootregistry/message/write","gateway/child/config/read","gateway/child/config/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:11.9206303+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:11.9206303+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Updating","actions":["repositories/repo1/content/read","repositories/repo1/metadata/read","repositories/repo2/metadata/read","gateway/rootregistry/config/write","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/child/message/write","gateway/child/config/read","repositories/repo2/content/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-599af613-5678-11ec-a894-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-3ce844ac-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '1110' + - '1045' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:09 GMT + - Fri, 31 Dec 2021 01:23:12 GMT expires: - '-1' pragma: @@ -1852,7 +1868,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1862,23 +1878,27 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-3ce844ac-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: - string: '{"error":{"code":"ResourceNotFound","message":"The resource child could - not be found."},"status":"Failed"}' + string: '{"status":"Succeeded"}' headers: + api-supported-versions: + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-3ce844ac-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '106' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:10 GMT + - Fri, 31 Dec 2021 01:23:22 GMT expires: - '-1' pragma: @@ -1887,49 +1907,48 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: - code: 404 - message: Not Found + code: 200 + message: OK - request: - body: '{"properties": {"actions": ["repositories/repo2/content/read", "repositories/repo2/metadata/read", - "gateway/child/config/read", "gateway/child/config/write", "gateway/child/message/read", - "gateway/child/message/write"]}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - acr connected-registry create Connection: - keep-alive - Content-Length: - - '220' - Content-Type: - - application/json ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:11.4473052+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:11.4473052+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","repositories/repo2/metadata/read","gateway/child/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:11.9206303+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:11.9206303+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/metadata/read","repositories/repo2/metadata/read","gateway/rootregistry/config/write","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/child/message/write","gateway/child/config/read","repositories/repo2/content/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '869' + - '1046' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:11 GMT + - Fri, 31 Dec 2021 01:23:22 GMT expires: - '-1' pragma: @@ -1944,14 +1963,11 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK - request: - body: '{"properties": {"scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child", - "status": "enabled"}}' + body: null headers: Accept: - application/json @@ -1961,33 +1977,26 @@ interactions: - acr connected-registry create Connection: - keep-alive - Content-Length: - - '283' - Content-Type: - - application/json ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2020-11-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:12.3014993+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:12.3014993+00:00"},"properties":{"creationDate":"2021-12-06T09:41:13.6084714+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"error":{"code":"ResourceNotFound","message":"The resource child could + not be found."},"status":"Failed"}' headers: - api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child/operationStatuses/token-599af613-5678-11ec-a894-00155d173227?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '957' + - '106' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:13 GMT + - Fri, 31 Dec 2021 01:23:22 GMT expires: - '-1' pragma: @@ -1998,45 +2007,48 @@ interactions: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 404 + message: Not Found - request: - body: null + body: '{"properties": {"actions": ["repositories/repo2/content/read", "repositories/repo2/metadata/read", + "gateway/child/config/read", "gateway/child/config/write", "gateway/child/message/read", + "gateway/child/message/write"]}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - acr connected-registry create Connection: - keep-alive + Content-Length: + - '220' + Content-Type: + - application/json ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-599af613-5678-11ec-a894-00155d173227?api-version=2020-11-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:23.9532715+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:23.9532715+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","repositories/repo2/metadata/read","gateway/child/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-599af613-5678-11ec-a894-00155d173227?api-version=2020-11-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '22' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:19 GMT + - Fri, 31 Dec 2021 01:23:23 GMT expires: - '-1' pragma: @@ -2051,41 +2063,51 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK - request: - body: null + body: '{"properties": {"scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child", + "status": "enabled"}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - acr connected-registry create Connection: - keep-alive + Content-Length: + - '216' + Content-Type: + - application/json ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:07.8829497+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:07.8829497+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/child/message/read","repositories/repo1/content/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/rootregistry/message/write","gateway/child/config/read","gateway/child/config/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:24.6763241+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:24.6763241+00:00"},"properties":{"creationDate":"2021-12-31T01:23:24.9975118+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child/operationStatuses/token-3ce844ac-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '1111' + - '807' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:20 GMT + - Fri, 31 Dec 2021 01:23:24 GMT expires: - '-1' pragma: @@ -2094,15 +2116,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -2117,18 +2137,19 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child/operationStatuses/token-599af613-5678-11ec-a894-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child/operationStatuses/token-3ce844ac-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child/operationStatuses/token-599af613-5678-11ec-a894-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child/operationStatuses/token-3ce844ac-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: @@ -2136,7 +2157,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:23 GMT + - Fri, 31 Dec 2021 01:23:34 GMT expires: - '-1' pragma: @@ -2168,24 +2189,25 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:12.3014993+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:12.3014993+00:00"},"properties":{"creationDate":"2021-12-06T09:41:13.6084714+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:24.6763241+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:24.6763241+00:00"},"properties":{"creationDate":"2021-12-31T01:23:24.9975118+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '958' + - '808' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:23 GMT + - Fri, 31 Dec 2021 01:23:35 GMT expires: - '-1' pragma: @@ -2218,31 +2240,31 @@ interactions: Connection: - keep-alive Content-Length: - - '679' + - '545' Content-Type: - application/json ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:25.1382568+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:25.1382568+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:36.0765627+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:36.0765627+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '1371' + - '1172' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:24 GMT + - Fri, 31 Dec 2021 01:23:35 GMT expires: - '-1' pragma: @@ -2258,7 +2280,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -2276,21 +2298,21 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:25 GMT + - Fri, 31 Dec 2021 01:23:35 GMT expires: - '-1' pragma: @@ -2318,24 +2340,24 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:26 GMT + - Fri, 31 Dec 2021 01:23:36 GMT expires: - '-1' pragma: @@ -2367,24 +2389,24 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:28 GMT + - Fri, 31 Dec 2021 01:23:36 GMT expires: - '-1' pragma: @@ -2416,25 +2438,25 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:25.1382568+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:25.1382568+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:36.0765627+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:36.0765627+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '1371' + - '1172' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:28 GMT + - Fri, 31 Dec 2021 01:23:36 GMT expires: - '-1' pragma: @@ -2466,27 +2488,27 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2021-08-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:23.468157+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:23.468157+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:57.8447161+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:57.8447161+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 - 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:25.1382568+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:25.1382568+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:39.3451639+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:39.3451639+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:07.5264917+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:07.5264917+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 + 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"]}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:36.0765627+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:36.0765627+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}]}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '4074' + - '3575' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:29 GMT + - Fri, 31 Dec 2021 01:23:37 GMT expires: - '-1' pragma: @@ -2518,24 +2540,25 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:12.3014993+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:12.3014993+00:00"},"properties":{"creationDate":"2021-12-06T09:41:13.6084714+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:24.6763241+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:24.6763241+00:00"},"properties":{"creationDate":"2021-12-31T01:23:24.9975118+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '958' + - '808' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:31 GMT + - Fri, 31 Dec 2021 01:23:37 GMT expires: - '-1' pragma: @@ -2567,24 +2590,25 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:11.4473052+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:11.4473052+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","repositories/repo2/metadata/read","gateway/child/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:23.9532715+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:23.9532715+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","repositories/repo2/metadata/read","gateway/child/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '869' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:32 GMT + - Fri, 31 Dec 2021 01:23:38 GMT expires: - '-1' pragma: @@ -2603,10 +2627,10 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"actions": ["repositories/repo2/metadata/read", "repositories/repo2/content/read", - "gateway/grandchild/message/read", "gateway/grandchild/config/read", "gateway/grandchild/config/write", - "gateway/child/config/read", "gateway/child/config/write", "gateway/grandchild/message/write", - "gateway/child/message/read", "gateway/child/message/write"]}}' + body: '{"properties": {"actions": ["repositories/repo2/metadata/read", "gateway/grandchild/config/write", + "gateway/grandchild/message/write", "gateway/grandchild/message/read", "gateway/grandchild/config/read", + "gateway/child/config/write", "gateway/child/message/read", "gateway/child/message/write", + "gateway/child/config/read", "repositories/repo2/content/read"]}}' headers: Accept: - application/json @@ -2623,26 +2647,27 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:33.3141315+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:33.3141315+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Updating","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/grandchild/message/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/write","gateway/child/message/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:39.6459775+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:39.6459775+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Updating","actions":["repositories/repo2/metadata/read","gateway/grandchild/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write","gateway/child/config/read","repositories/repo2/content/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-69348803-5678-11ec-a6de-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-4dd942b6-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '1004' + - '940' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:33 GMT + - Fri, 31 Dec 2021 01:23:39 GMT expires: - '-1' pragma: @@ -2662,7 +2687,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2672,24 +2697,27 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-4dd942b6-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:25.8247413+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:25.8247413+00:00"},"properties":{"creationDate":"2021-12-06T09:40:27.1922099+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-4dd942b6-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '980' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:33 GMT + - Fri, 31 Dec 2021 01:23:49 GMT expires: - '-1' pragma: @@ -2711,7 +2739,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2721,24 +2749,25 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:07.8829497+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:07.8829497+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/child/message/read","repositories/repo1/content/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/rootregistry/message/write","gateway/child/config/read","gateway/child/config/write","gateway/rootregistry/message/read","repositories/repo1/metadata/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:39.6459775+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:39.6459775+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","gateway/grandchild/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write","gateway/child/config/read","repositories/repo2/content/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1111' + - '941' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:36 GMT + - Fri, 31 Dec 2021 01:23:50 GMT expires: - '-1' pragma: @@ -2757,12 +2786,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"actions": ["repositories/repo2/metadata/read", "repositories/repo2/content/read", - "gateway/grandchild/message/read", "repositories/repo1/content/read", "gateway/grandchild/config/read", - "gateway/grandchild/config/write", "gateway/rootregistry/message/write", "repositories/repo1/metadata/read", - "gateway/rootregistry/config/read", "gateway/rootregistry/config/write", "gateway/child/config/read", - "gateway/child/config/write", "gateway/rootregistry/message/read", "gateway/child/message/read", - "gateway/grandchild/message/write", "gateway/child/message/write"]}}' + body: null headers: Accept: - application/json @@ -2772,33 +2796,28 @@ interactions: - acr connected-registry create Connection: - keep-alive - Content-Length: - - '579' - Content-Type: - - application/json ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:36.969124+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:36.969124+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Updating","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/grandchild/message/read","repositories/repo1/content/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/rootregistry/message/write","repositories/repo1/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/child/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/grandchild/message/write","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:41.5903391+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:41.5903391+00:00"},"properties":{"creationDate":"2021-12-31T01:22:41.9324827+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-69348803-5678-11ec-a6de-00155d173227?api-version=2020-11-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1244' + - '830' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:36 GMT + - Fri, 31 Dec 2021 01:23:50 GMT expires: - '-1' pragma: @@ -2807,13 +2826,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -2828,74 +2849,25 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview - response: - body: - string: '{"error":{"code":"ResourceNotFound","message":"The resource grandchild - could not be found."},"status":"Failed"}' - headers: - cache-control: - - no-cache - content-length: - - '111' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Dec 2021 09:41:38 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - status: - code: 404 - message: Not Found -- request: - body: '{"properties": {"actions": ["repositories/repo2/content/read", "repositories/repo2/metadata/read", - "gateway/grandchild/config/read", "gateway/grandchild/config/write", "gateway/grandchild/message/read", - "gateway/grandchild/message/write"]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr connected-registry create - Connection: - - keep-alive - Content-Length: - - '240' - Content-Type: - - application/json - ParameterSetName: - - -n -p -r --repository -m - User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:39.4002525+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:39.4002525+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:39.5742692+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","repositories/repo2/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:11.9206303+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:11.9206303+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/metadata/read","repositories/repo2/metadata/read","gateway/rootregistry/config/write","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/child/message/write","gateway/child/config/read","repositories/repo2/content/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '900' + - '1046' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:38 GMT + - Fri, 31 Dec 2021 01:23:51 GMT expires: - '-1' pragma: @@ -2910,14 +2882,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK - request: - body: '{"properties": {"scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild", - "status": "enabled"}}' + body: '{"properties": {"actions": ["repositories/repo1/metadata/read", "gateway/rootregistry/message/write", + "gateway/rootregistry/config/read", "gateway/grandchild/config/read", "gateway/child/config/write", + "gateway/child/message/read", "repositories/repo2/content/read", "repositories/repo2/metadata/read", + "repositories/repo1/content/read", "gateway/grandchild/config/write", "gateway/rootregistry/config/write", + "gateway/grandchild/message/write", "gateway/grandchild/message/read", "gateway/rootregistry/message/read", + "gateway/child/message/write", "gateway/child/config/read"]}}' headers: Accept: - application/json @@ -2928,32 +2902,33 @@ interactions: Connection: - keep-alive Content-Length: - - '288' + - '579' Content-Type: - application/json ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2020-11-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:40.1793928+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:40.1793928+00:00"},"properties":{"creationDate":"2021-12-06T09:41:41.4904226+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:51.9255085+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:51.9255085+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Updating","actions":["repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","repositories/repo2/content/read","repositories/repo2/metadata/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/rootregistry/message/read","gateway/child/message/write","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild/operationStatuses/token-69348803-5678-11ec-a6de-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-4dd942b6-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '972' + - '1181' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:41 GMT + - Fri, 31 Dec 2021 01:23:51 GMT expires: - '-1' pragma: @@ -2983,18 +2958,19 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-69348803-5678-11ec-a6de-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-4dd942b6-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-69348803-5678-11ec-a6de-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-4dd942b6-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: @@ -3002,7 +2978,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:43 GMT + - Fri, 31 Dec 2021 01:24:01 GMT expires: - '-1' pragma: @@ -3034,24 +3010,25 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:33.3141315+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:33.3141315+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/grandchild/message/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/write","gateway/child/message/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:51.9255085+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:51.9255085+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","repositories/repo2/content/read","repositories/repo2/metadata/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/rootregistry/message/read","gateway/child/message/write","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1005' + - '1182' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:43 GMT + - Fri, 31 Dec 2021 01:24:02 GMT expires: - '-1' pragma: @@ -3073,7 +3050,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -3083,26 +3060,23 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-69348803-5678-11ec-a6de-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"error":{"code":"ResourceNotFound","message":"The resource grandchild + could not be found."},"status":"Failed"}' headers: - api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-69348803-5678-11ec-a6de-00155d173227?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '22' + - '111' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:46 GMT + - Fri, 31 Dec 2021 01:24:02 GMT expires: - '-1' pragma: @@ -3111,47 +3085,50 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: - code: 200 - message: OK + code: 404 + message: Not Found - request: - body: null + body: '{"properties": {"actions": ["repositories/repo2/content/read", "repositories/repo2/metadata/read", + "gateway/grandchild/config/read", "gateway/grandchild/config/write", "gateway/grandchild/message/read", + "gateway/grandchild/message/write"]}}' headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - acr connected-registry create Connection: - keep-alive + Content-Length: + - '240' + Content-Type: + - application/json ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:36.969124+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:36.969124+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/grandchild/message/read","repositories/repo1/content/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/rootregistry/message/write","repositories/repo1/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/child/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/grandchild/message/write","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:03.0636047+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:03.0636047+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:24:03.1558188+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","repositories/repo2/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1245' + - '835' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:47 GMT + - Fri, 31 Dec 2021 01:24:02 GMT expires: - '-1' pragma: @@ -3166,14 +3143,71 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK - request: - body: null + body: '{"properties": {"scopeMapId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild", + "status": "enabled"}}' headers: Accept: - - '*/*' + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr connected-registry create + Connection: + - keep-alive + Content-Length: + - '221' + Content-Type: + - application/json + ParameterSetName: + - -n -p -r --repository -m + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2020-11-01-preview + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:03.477327+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:03.477327+00:00"},"properties":{"creationDate":"2021-12-31T01:24:03.9377061+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' + headers: + api-supported-versions: + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild/operationStatuses/token-4dd942b6-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview + cache-control: + - no-cache + content-length: + - '820' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Dec 2021 01:24:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -3183,18 +3217,19 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild/operationStatuses/token-69348803-5678-11ec-a6de-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild/operationStatuses/token-4dd942b6-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild/operationStatuses/token-69348803-5678-11ec-a6de-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild/operationStatuses/token-4dd942b6-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: @@ -3202,7 +3237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:51 GMT + - Fri, 31 Dec 2021 01:24:14 GMT expires: - '-1' pragma: @@ -3234,24 +3269,25 @@ interactions: ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:40.1793928+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:40.1793928+00:00"},"properties":{"creationDate":"2021-12-06T09:41:41.4904226+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:03.477327+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:03.477327+00:00"},"properties":{"creationDate":"2021-12-31T01:24:03.9377061+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '973' + - '821' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:52 GMT + - Fri, 31 Dec 2021 01:24:14 GMT expires: - '-1' pragma: @@ -3284,31 +3320,31 @@ interactions: Connection: - keep-alive Content-Length: - - '677' + - '543' Content-Type: - application/json ParameterSetName: - -n -p -r --repository -m User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:52.9916259+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:52.9916259+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:14.967125+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:14.967125+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '1379' + - '1178' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:52 GMT + - Fri, 31 Dec 2021 01:24:15 GMT expires: - '-1' pragma: @@ -3342,21 +3378,21 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:53 GMT + - Fri, 31 Dec 2021 01:24:14 GMT expires: - '-1' pragma: @@ -3384,24 +3420,24 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:54 GMT + - Fri, 31 Dec 2021 01:24:15 GMT expires: - '-1' pragma: @@ -3433,28 +3469,28 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2021-08-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:23.468157+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:23.468157+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:57.8447161+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:57.8447161+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 - 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:25.1382568+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:25.1382568+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:52.9916259+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:52.9916259+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:39.3451639+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:39.3451639+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:07.5264917+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:07.5264917+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 + 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"]}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:36.0765627+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:36.0765627+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:14.967125+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:14.967125+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}]}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '5454' + - '4754' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:56 GMT + - Fri, 31 Dec 2021 01:24:16 GMT expires: - '-1' pragma: @@ -3486,21 +3522,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:56 GMT + - Fri, 31 Dec 2021 01:24:16 GMT expires: - '-1' pragma: @@ -3528,24 +3564,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:41:58 GMT + - Fri, 31 Dec 2021 01:24:16 GMT expires: - '-1' pragma: @@ -3577,24 +3613,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:01 GMT + - Fri, 31 Dec 2021 01:24:17 GMT expires: - '-1' pragma: @@ -3626,25 +3662,25 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:57.8447161+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:57.8447161+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 - 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"}}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:07.5264917+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:07.5264917+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 + 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"]}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '1472' + - '1310' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:02 GMT + - Fri, 31 Dec 2021 01:24:18 GMT expires: - '-1' pragma: @@ -3676,24 +3712,25 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken","name":"clientToken","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:42.07512+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:42.07512+00:00"},"properties":{"creationDate":"2021-12-06T09:40:43.3691326+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken","name":"clientToken","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:54.5979059+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:54.5979059+00:00"},"properties":{"creationDate":"2021-12-31T01:22:54.9476414+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '982' + - '836' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:04 GMT + - Fri, 31 Dec 2021 01:24:19 GMT expires: - '-1' pragma: @@ -3725,21 +3762,21 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:05 GMT + - Fri, 31 Dec 2021 01:24:19 GMT expires: - '-1' pragma: @@ -3767,8 +3804,8 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map?api-version=2020-11-01-preview response: @@ -3783,7 +3820,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:05 GMT + - Fri, 31 Dec 2021 01:24:19 GMT expires: - '-1' pragma: @@ -3815,24 +3852,25 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map","name":"clientToken2-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:06.5592274+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:06.5592274+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:42:06.7104766+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map","name":"clientToken2-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:20.4619392+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:20.4619392+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:24:20.9639687+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '754' + - '689' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:06 GMT + - Fri, 31 Dec 2021 01:24:20 GMT expires: - '-1' pragma: @@ -3848,7 +3886,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -3865,32 +3903,33 @@ interactions: Connection: - keep-alive Content-Length: - - '300' + - '233' Content-Type: - application/json ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2","name":"clientToken2","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:07.3536187+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:07.3536187+00:00"},"properties":{"creationDate":"2021-12-06T09:42:08.8238582+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2","name":"clientToken2","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:21.5832523+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:21.5832523+00:00"},"properties":{"creationDate":"2021-12-31T01:24:21.8747051+00:00","provisioningState":"Creating","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2/operationStatuses/token-80d31244-5678-11ec-99ab-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2/operationStatuses/token-678175b2-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '988' + - '838' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:08 GMT + - Fri, 31 Dec 2021 01:24:21 GMT expires: - '-1' pragma: @@ -3920,18 +3959,19 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2/operationStatuses/token-80d31244-5678-11ec-99ab-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2/operationStatuses/token-678175b2-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2/operationStatuses/token-80d31244-5678-11ec-99ab-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2/operationStatuses/token-678175b2-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: @@ -3939,7 +3979,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:20 GMT + - Fri, 31 Dec 2021 01:24:31 GMT expires: - '-1' pragma: @@ -3971,24 +4011,25 @@ interactions: ParameterSetName: - -r -n --repository --no-passwords User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2","name":"clientToken2","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:07.3536187+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:07.3536187+00:00"},"properties":{"creationDate":"2021-12-06T09:42:08.8238582+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2","name":"clientToken2","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:21.5832523+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:21.5832523+00:00"},"properties":{"creationDate":"2021-12-31T01:24:21.8747051+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '989' + - '839' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:20 GMT + - Fri, 31 Dec 2021 01:24:32 GMT expires: - '-1' pragma: @@ -4018,23 +4059,24 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r --log-level -s --remove-client-tokens --add-client-tokens + - -n -r --log-level -s --remove-client-tokens --add-client-tokens --add-notifications + --remove-notifications User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:21 GMT + - Fri, 31 Dec 2021 01:24:32 GMT expires: - '-1' pragma: @@ -4060,26 +4102,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r --log-level -s --remove-client-tokens --add-client-tokens + - -n -r --log-level -s --remove-client-tokens --add-client-tokens --add-notifications + --remove-notifications User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:22 GMT + - Fri, 31 Dec 2021 01:24:32 GMT expires: - '-1' pragma: @@ -4109,26 +4152,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r --log-level -s --remove-client-tokens --add-client-tokens + - -n -r --log-level -s --remove-client-tokens --add-client-tokens --add-notifications + --remove-notifications User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:25 GMT + - Fri, 31 Dec 2021 01:24:33 GMT expires: - '-1' pragma: @@ -4158,27 +4202,28 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r --log-level -s --remove-client-tokens --add-client-tokens + - -n -r --log-level -s --remove-client-tokens --add-client-tokens --add-notifications + --remove-notifications User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:57.8447161+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:57.8447161+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 - 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"}}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:07.5264917+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:07.5264917+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"0 + 0/10 * * *","syncWindow":"PT4H","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Warning","auditLogStatus":"Disabled"},"notificationsList":["hello-world:tag:push"]}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '1472' + - '1310' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:25 GMT + - Fri, 31 Dec 2021 01:24:33 GMT expires: - '-1' pragma: @@ -4198,7 +4243,8 @@ interactions: message: OK - request: body: '{"properties": {"syncProperties": {"schedule": "* * * * *"}, "logging": - {"logLevel": "Information"}, "clientTokenIds": ["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"]}}' + {"logLevel": "Information"}, "clientTokenIds": ["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"], + "notificationsList": ["*:*"]}}' headers: Accept: - application/json @@ -4209,31 +4255,32 @@ interactions: Connection: - keep-alive Content-Length: - - '357' + - '320' Content-Type: - application/json ParameterSetName: - - -n -r --log-level -s --remove-client-tokens --add-client-tokens + - -n -r --log-level -s --remove-client-tokens --add-client-tokens --add-notifications + --remove-notifications User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:26.8255767+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:26.8255767+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:34.2781476+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:34.2781476+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"]}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '1454' + - '1275' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:26 GMT + - Fri, 31 Dec 2021 01:24:34 GMT expires: - '-1' pragma: @@ -4267,21 +4314,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:27 GMT + - Fri, 31 Dec 2021 01:24:33 GMT expires: - '-1' pragma: @@ -4309,24 +4356,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:28 GMT + - Fri, 31 Dec 2021 01:24:35 GMT expires: - '-1' pragma: @@ -4358,24 +4405,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:30 GMT + - Fri, 31 Dec 2021 01:24:35 GMT expires: - '-1' pragma: @@ -4407,25 +4454,25 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:26.8255767+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:26.8255767+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:34.2781476+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:34.2781476+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"]}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '1454' + - '1275' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:31 GMT + - Fri, 31 Dec 2021 01:24:36 GMT expires: - '-1' pragma: @@ -4457,24 +4504,25 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2","name":"clientToken2","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:07.3536187+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:07.3536187+00:00"},"properties":{"creationDate":"2021-12-06T09:42:08.8238582+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2","name":"clientToken2","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:21.5832523+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:21.5832523+00:00"},"properties":{"creationDate":"2021-12-31T01:24:21.8747051+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/clientToken2-scope-map","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '989' + - '839' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:33 GMT + - Fri, 31 Dec 2021 01:24:36 GMT expires: - '-1' pragma: @@ -4506,21 +4554,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:33 GMT + - Fri, 31 Dec 2021 01:24:36 GMT expires: - '-1' pragma: @@ -4548,24 +4596,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:36 GMT + - Fri, 31 Dec 2021 01:24:37 GMT expires: - '-1' pragma: @@ -4597,25 +4645,25 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:23.468157+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:23.468157+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:39.3451639+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:39.3451639+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '1217' + - '1079' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:36 GMT + - Fri, 31 Dec 2021 01:24:37 GMT expires: - '-1' pragma: @@ -4647,21 +4695,21 @@ interactions: ParameterSetName: - -n -r --parent-protocol --generate-password -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:37 GMT + - Fri, 31 Dec 2021 01:24:37 GMT expires: - '-1' pragma: @@ -4689,24 +4737,24 @@ interactions: ParameterSetName: - -n -r --parent-protocol --generate-password -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:39 GMT + - Fri, 31 Dec 2021 01:24:37 GMT expires: - '-1' pragma: @@ -4738,24 +4786,24 @@ interactions: ParameterSetName: - -n -r --parent-protocol --generate-password -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:41 GMT + - Fri, 31 Dec 2021 01:24:38 GMT expires: - '-1' pragma: @@ -4787,25 +4835,25 @@ interactions: ParameterSetName: - -n -r --parent-protocol --generate-password -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:26.8255767+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:26.8255767+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:34.2781476+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:34.2781476+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"]}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '1454' + - '1275' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:43 GMT + - Fri, 31 Dec 2021 01:24:39 GMT expires: - '-1' pragma: @@ -4837,21 +4885,21 @@ interactions: ParameterSetName: - -n -r --parent-protocol --generate-password -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:43 GMT + - Fri, 31 Dec 2021 01:24:39 GMT expires: - '-1' pragma: @@ -4878,22 +4926,23 @@ interactions: Connection: - keep-alive Content-Length: - - '265' + - '198' Content-Type: - application/json ParameterSetName: - -n -r --parent-protocol --generate-password -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/generateCredentials?api-version=2020-11-01-preview response: body: - string: '{"username":"syncToken","passwords":[{"creationTime":"2021-12-06T09:42:44.5745762+00:00","name":"password2","value":"u/0fOS1EX6nhQqBoAvfZfmClc4CReNRv"}]}' + string: '{"username":"syncToken","passwords":[{"creationTime":"2021-12-31T01:24:40.9220051+00:00","name":"password2","value":"r=ntzUdTgCjH7hHnu1onKexlDPw5kQb5"}]}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: @@ -4901,7 +4950,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:44 GMT + - Fri, 31 Dec 2021 01:24:40 GMT expires: - '-1' pragma: @@ -4935,21 +4984,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:45 GMT + - Fri, 31 Dec 2021 01:24:41 GMT expires: - '-1' pragma: @@ -4977,24 +5026,25 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:25.8247413+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:25.8247413+00:00"},"properties":{"creationDate":"2021-12-06T09:40:27.1922099+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"certificates":[],"passwords":[{"creationTime":"2021-12-06T09:42:44.5745762+00:00","name":"password2"}]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:41.5903391+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:41.5903391+00:00"},"properties":{"creationDate":"2021-12-31T01:22:41.9324827+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2021-12-31T01:24:40.9220051+00:00","name":"password2"}]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1051' + - '901' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:45 GMT + - Fri, 31 Dec 2021 01:24:41 GMT expires: - '-1' pragma: @@ -5026,21 +5076,21 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '617' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:45 GMT + - Fri, 31 Dec 2021 01:24:41 GMT expires: - '-1' pragma: @@ -5068,24 +5118,24 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1403' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:48 GMT + - Fri, 31 Dec 2021 01:24:42 GMT expires: - '-1' pragma: @@ -5117,28 +5167,28 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2021-08-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:23.468157+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:23.468157+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:26.8255767+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:26.8255767+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:25.1382568+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:25.1382568+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:52.9916259+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:52.9916259+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:39.3451639+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:39.3451639+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:34.2781476+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:34.2781476+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"]}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:36.0765627+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:36.0765627+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:14.967125+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:14.967125+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}]}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '5436' + - '4719' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:49 GMT + - Fri, 31 Dec 2021 01:24:42 GMT expires: - '-1' pragma: @@ -5170,24 +5220,25 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:12.3014993+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:12.3014993+00:00"},"properties":{"creationDate":"2021-12-06T09:41:13.6084714+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:24.6763241+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:24.6763241+00:00"},"properties":{"creationDate":"2021-12-31T01:23:24.9975118+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '958' + - '808' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:50 GMT + - Fri, 31 Dec 2021 01:24:42 GMT expires: - '-1' pragma: @@ -5219,24 +5270,25 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:33.3141315+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:33.3141315+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/grandchild/message/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/write","gateway/child/message/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:39.6459775+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:39.6459775+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","gateway/grandchild/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write","gateway/child/config/read","repositories/repo2/content/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1005' + - '941' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:51 GMT + - Fri, 31 Dec 2021 01:24:43 GMT expires: - '-1' pragma: @@ -5255,11 +5307,11 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"actions": ["repositories/repo2/metadata/read", "repositories/repo2/content/read", - "gateway/grandchild/message/read", "gateway/grandchild/config/read", "repositories/repo3/metadata/read", - "repositories/repo1/content/read", "gateway/grandchild/config/write", "gateway/child/config/read", - "gateway/child/config/write", "gateway/grandchild/message/write", "gateway/child/message/read", - "repositories/repo1/metadata/read", "repositories/repo3/content/read", "gateway/child/message/write"]}}' + body: '{"properties": {"actions": ["repositories/repo2/metadata/read", "gateway/grandchild/config/write", + "repositories/repo1/content/read", "repositories/repo1/metadata/read", "repositories/repo3/content/read", + "gateway/grandchild/message/write", "gateway/grandchild/message/read", "repositories/repo3/metadata/read", + "gateway/grandchild/config/read", "gateway/child/config/write", "gateway/child/message/read", + "gateway/child/message/write", "gateway/child/config/read", "repositories/repo2/content/read"]}}' headers: Accept: - application/json @@ -5276,26 +5328,27 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:52.3539494+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:52.3539494+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Updating","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/write","gateway/child/message/read","repositories/repo1/metadata/read","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:44.0148924+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:44.0148924+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Updating","actions":["repositories/repo2/metadata/read","gateway/grandchild/config/write","repositories/repo1/content/read","repositories/repo1/metadata/read","repositories/repo3/content/read","gateway/grandchild/message/write","gateway/grandchild/message/read","repositories/repo3/metadata/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write","gateway/child/config/read","repositories/repo2/content/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-993e8a13-5678-11ec-9498-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-74c3dbf2-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '1142' + - '1078' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:51 GMT + - Fri, 31 Dec 2021 01:24:43 GMT expires: - '-1' pragma: @@ -5315,7 +5368,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -5325,24 +5378,27 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-74c3dbf2-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:25.8247413+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:25.8247413+00:00"},"properties":{"creationDate":"2021-12-06T09:40:27.1922099+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"certificates":[],"passwords":[{"creationTime":"2021-12-06T09:42:44.5745762+00:00","name":"password2"}]},"status":"enabled"}}' + string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-74c3dbf2-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '1051' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:53 GMT + - Fri, 31 Dec 2021 01:24:53 GMT expires: - '-1' pragma: @@ -5364,7 +5420,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -5374,24 +5430,25 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:36.969124+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:36.969124+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/grandchild/message/read","repositories/repo1/content/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/rootregistry/message/write","repositories/repo1/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/child/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/grandchild/message/write","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:44.0148924+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:44.0148924+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","gateway/grandchild/config/write","repositories/repo1/content/read","repositories/repo1/metadata/read","repositories/repo3/content/read","gateway/grandchild/message/write","gateway/grandchild/message/read","repositories/repo3/metadata/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write","gateway/child/config/read","repositories/repo2/content/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1245' + - '1079' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:55 GMT + - Fri, 31 Dec 2021 01:24:54 GMT expires: - '-1' pragma: @@ -5409,65 +5466,6 @@ interactions: status: code: 200 message: OK -- request: - body: '{"properties": {"actions": ["repositories/repo2/metadata/read", "repositories/repo2/content/read", - "gateway/grandchild/message/read", "gateway/grandchild/config/read", "repositories/repo1/content/read", - "gateway/grandchild/config/write", "gateway/rootregistry/message/write", "repositories/repo1/metadata/read", - "repositories/repo3/metadata/read", "gateway/rootregistry/config/read", "gateway/rootregistry/config/write", - "gateway/child/config/read", "gateway/child/config/write", "gateway/rootregistry/message/read", - "gateway/child/message/read", "gateway/grandchild/message/write", "repositories/repo3/content/read", - "gateway/child/message/write"]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr connected-registry permissions update - Connection: - - keep-alive - Content-Length: - - '650' - Content-Type: - - application/json - ParameterSetName: - - -n -r --add - User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview - response: - body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:55.9697273+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:55.9697273+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Updating","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/message/write","repositories/repo1/metadata/read","repositories/repo3/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/child/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/grandchild/message/write","repositories/repo3/content/read","gateway/child/message/write"]}}' - headers: - api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-993e8a13-5678-11ec-9498-00155d173227?api-version=2020-11-01-preview - cache-control: - - no-cache - content-length: - - '1315' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 06 Dec 2021 09:42:56 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created - request: body: null headers: @@ -5482,24 +5480,25 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:40.1793928+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:40.1793928+00:00"},"properties":{"creationDate":"2021-12-06T09:41:41.4904226+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:41.5903391+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:41.5903391+00:00"},"properties":{"creationDate":"2021-12-31T01:22:41.9324827+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2021-12-31T01:24:40.9220051+00:00","name":"password2"}]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '973' + - '901' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:57 GMT + - Fri, 31 Dec 2021 01:24:54 GMT expires: - '-1' pragma: @@ -5531,24 +5530,25 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:39.4002525+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:39.4002525+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:39.5742692+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","repositories/repo2/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:51.9255085+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:51.9255085+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","repositories/repo2/content/read","repositories/repo2/metadata/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/rootregistry/message/read","gateway/child/message/write","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '900' + - '1182' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:42:59 GMT + - Fri, 31 Dec 2021 01:24:55 GMT expires: - '-1' pragma: @@ -5567,10 +5567,13 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"actions": ["repositories/repo2/metadata/read", "repositories/repo2/content/read", - "gateway/grandchild/message/read", "gateway/grandchild/config/read", "repositories/repo3/metadata/read", - "repositories/repo1/content/read", "gateway/grandchild/config/write", "gateway/grandchild/message/write", - "repositories/repo1/metadata/read", "repositories/repo3/content/read"]}}' + body: '{"properties": {"actions": ["repositories/repo3/content/read", "repositories/repo1/metadata/read", + "gateway/rootregistry/message/write", "gateway/rootregistry/config/read", "gateway/grandchild/config/read", + "gateway/child/config/write", "gateway/child/message/read", "repositories/repo3/metadata/read", + "repositories/repo2/content/read", "repositories/repo2/metadata/read", "repositories/repo1/content/read", + "gateway/grandchild/config/write", "gateway/rootregistry/config/write", "gateway/grandchild/message/write", + "gateway/grandchild/message/read", "gateway/rootregistry/message/read", "gateway/child/message/write", + "gateway/child/config/read"]}}' headers: Accept: - application/json @@ -5581,32 +5584,33 @@ interactions: Connection: - keep-alive Content-Length: - - '382' + - '650' Content-Type: - application/json ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:00.696843+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:00.696843+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:39.5742692+00:00","provisioningState":"Updating","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/grandchild/message/write","repositories/repo1/metadata/read","repositories/repo3/content/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:56.0340698+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:56.0340698+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Updating","actions":["repositories/repo3/content/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","repositories/repo3/metadata/read","repositories/repo2/content/read","repositories/repo2/metadata/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/rootregistry/message/read","gateway/child/message/write","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-993e8a13-5678-11ec-9498-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-74c3dbf2-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '1035' + - '1250' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:01 GMT + - Fri, 31 Dec 2021 01:25:09 GMT expires: - '-1' pragma: @@ -5626,37 +5630,47 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions show + - acr connected-registry permissions update Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-74c3dbf2-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"status":"Succeeded"}' headers: + api-supported-versions: + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-74c3dbf2-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '617' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:01 GMT + - Fri, 31 Dec 2021 01:25:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -5678,26 +5692,25 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-993e8a13-5678-11ec-9498-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:56.0340698+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:56.0340698+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/content/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","repositories/repo3/metadata/read","repositories/repo2/content/read","repositories/repo2/metadata/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/rootregistry/message/read","gateway/child/message/write","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-993e8a13-5678-11ec-9498-00155d173227?api-version=2020-11-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '22' + - '1251' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:02 GMT + - Fri, 31 Dec 2021 01:25:19 GMT expires: - '-1' pragma: @@ -5719,7 +5732,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -5729,24 +5742,25 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:52.3539494+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:52.3539494+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/write","gateway/child/message/read","repositories/repo1/metadata/read","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:03.477327+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:03.477327+00:00"},"properties":{"creationDate":"2021-12-31T01:24:03.9377061+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1143' + - '821' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:02 GMT + - Fri, 31 Dec 2021 01:25:20 GMT expires: - '-1' pragma: @@ -5772,30 +5786,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions show + - acr connected-registry permissions update Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:03.0636047+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:03.0636047+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:24:03.1558188+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/content/read","repositories/repo2/metadata/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/read","gateway/grandchild/message/write"]}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1403' + - '835' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:04 GMT + - Fri, 31 Dec 2021 01:25:20 GMT expires: - '-1' pragma: @@ -5814,37 +5829,47 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"actions": ["repositories/repo2/metadata/read", "gateway/grandchild/config/write", + "repositories/repo1/content/read", "repositories/repo1/metadata/read", "repositories/repo3/content/read", + "gateway/grandchild/message/write", "gateway/grandchild/message/read", "gateway/grandchild/config/read", + "repositories/repo3/metadata/read", "repositories/repo2/content/read"]}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions show + - acr connected-registry permissions update Connection: - keep-alive + Content-Length: + - '382' + Content-Type: + - application/json ParameterSetName: - - -n -r + - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:25:21.7873078+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:25:21.7873078+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:24:03.1558188+00:00","provisioningState":"Updating","actions":["repositories/repo2/metadata/read","gateway/grandchild/config/write","repositories/repo1/content/read","repositories/repo1/metadata/read","repositories/repo3/content/read","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read","repositories/repo2/content/read"]}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-74c3dbf2-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '1403' + - '972' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:06 GMT + - Fri, 31 Dec 2021 01:25:21 GMT expires: - '-1' pragma: @@ -5853,15 +5878,13 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -5876,18 +5899,19 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-993e8a13-5678-11ec-9498-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-74c3dbf2-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-993e8a13-5678-11ec-9498-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-74c3dbf2-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: @@ -5895,7 +5919,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:06 GMT + - Fri, 31 Dec 2021 01:25:32 GMT expires: - '-1' pragma: @@ -5927,24 +5951,25 @@ interactions: ParameterSetName: - -n -r --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:55.9697273+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:55.9697273+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/message/write","repositories/repo1/metadata/read","repositories/repo3/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/child/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/grandchild/message/write","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:25:21.7873078+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:25:21.7873078+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:24:03.1558188+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","gateway/grandchild/config/write","repositories/repo1/content/read","repositories/repo1/metadata/read","repositories/repo3/content/read","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read","repositories/repo2/content/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1316' + - '973' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:07 GMT + - Fri, 31 Dec 2021 01:25:32 GMT expires: - '-1' pragma: @@ -5976,35 +6001,27 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2021-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:26.8255767+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:26.8255767+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: - api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview cache-control: - no-cache content-length: - - '1454' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:08 GMT + - Fri, 31 Dec 2021 01:25:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -6026,24 +6043,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:25.8247413+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:25.8247413+00:00"},"properties":{"creationDate":"2021-12-06T09:40:27.1922099+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"certificates":[],"passwords":[{"creationTime":"2021-12-06T09:42:44.5745762+00:00","name":"password2"}]},"status":"enabled"}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1051' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:09 GMT + - Fri, 31 Dec 2021 01:25:32 GMT expires: - '-1' pragma: @@ -6075,16 +6092,16 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:55.9697273+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:55.9697273+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/message/write","repositories/repo1/metadata/read","repositories/repo3/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/child/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/grandchild/message/write","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: @@ -6092,7 +6109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:10 GMT + - Fri, 31 Dec 2021 01:25:33 GMT expires: - '-1' pragma: @@ -6118,33 +6135,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions update + - acr connected-registry permissions show Connection: - keep-alive ParameterSetName: - - -n -r --remove + - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry?api-version=2021-08-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:34.2781476+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:34.2781476+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"]}}' headers: + api-supported-versions: + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '617' + - '1275' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:11 GMT + - Fri, 31 Dec 2021 01:25:34 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -6156,36 +6181,35 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions update + - acr connected-registry permissions show Connection: - keep-alive ParameterSetName: - - -n -r --add + - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-993e8a13-5678-11ec-9498-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2020-11-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:41.5903391+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:41.5903391+00:00"},"properties":{"creationDate":"2021-12-31T01:22:41.9324827+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2021-12-31T01:24:40.9220051+00:00","name":"password2"}]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-993e8a13-5678-11ec-9498-00155d173227?api-version=2020-11-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '22' + - '901' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:11 GMT + - Fri, 31 Dec 2021 01:25:35 GMT expires: - '-1' pragma: @@ -6207,34 +6231,35 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions update + - acr connected-registry permissions show Connection: - keep-alive ParameterSetName: - - -n -r --add + - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:00.696843+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:00.696843+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:39.5742692+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/grandchild/message/write","repositories/repo1/metadata/read","repositories/repo3/content/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:56.0340698+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:56.0340698+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/content/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","repositories/repo3/metadata/read","repositories/repo2/content/read","repositories/repo2/metadata/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/rootregistry/message/read","gateway/child/message/write","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1036' + - '1251' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:12 GMT + - Fri, 31 Dec 2021 01:25:35 GMT expires: - '-1' pragma: @@ -6266,34 +6291,27 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: - api-supported-versions: - - 2021-06-01-preview cache-control: - no-cache content-length: - - '1403' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:12 GMT + - Fri, 31 Dec 2021 01:25:35 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -6315,28 +6333,24 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2021-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:23.468157+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:23.468157+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:26.8255767+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:26.8255767+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:25.1382568+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:25.1382568+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:52.9916259+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:52.9916259+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}]}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '5436' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:15 GMT + - Fri, 31 Dec 2021 01:25:36 GMT expires: - '-1' pragma: @@ -6368,24 +6382,28 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:12.3014993+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:12.3014993+00:00"},"properties":{"creationDate":"2021-12-06T09:41:13.6084714+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:39.3451639+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:39.3451639+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:34.2781476+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:34.2781476+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"]}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:36.0765627+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:36.0765627+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:14.967125+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:14.967125+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* + * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}]}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '958' + - '4719' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:16 GMT + - Fri, 31 Dec 2021 01:25:37 GMT expires: - '-1' pragma: @@ -6417,24 +6435,25 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:52.3539494+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:52.3539494+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/write","gateway/child/message/read","repositories/repo1/metadata/read","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:24.6763241+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:24.6763241+00:00"},"properties":{"creationDate":"2021-12-31T01:23:24.9975118+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1143' + - '808' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:18 GMT + - Fri, 31 Dec 2021 01:25:38 GMT expires: - '-1' pragma: @@ -6453,10 +6472,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/grandchild/message/read", "gateway/grandchild/config/read", - "repositories/repo3/metadata/read", "gateway/grandchild/config/write", "gateway/child/config/read", - "gateway/child/config/write", "gateway/grandchild/message/write", "gateway/child/message/read", - "repositories/repo3/content/read", "gateway/child/message/write"]}}' + body: null headers: Accept: - application/json @@ -6466,33 +6482,28 @@ interactions: - acr connected-registry permissions update Connection: - keep-alive - Content-Length: - - '360' - Content-Type: - - application/json ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: PATCH + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:19.0720751+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:19.0720751+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Updating","actions":["gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read","gateway/grandchild/config/write","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/write","gateway/child/message/read","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:44.0148924+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:44.0148924+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","gateway/grandchild/config/write","repositories/repo1/content/read","repositories/repo1/metadata/read","repositories/repo3/content/read","gateway/grandchild/message/write","gateway/grandchild/message/read","repositories/repo3/metadata/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write","gateway/child/config/read","repositories/repo2/content/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-a864bcd3-5678-11ec-9aec-00155d173227?api-version=2020-11-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1004' + - '1079' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:18 GMT + - Fri, 31 Dec 2021 01:25:38 GMT expires: - '-1' pragma: @@ -6501,15 +6512,20 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff status: - code: 201 - message: Created + code: 200 + message: OK - request: - body: null + body: '{"properties": {"actions": ["repositories/repo3/content/read", "gateway/grandchild/config/write", + "gateway/grandchild/message/write", "gateway/grandchild/message/read", "repositories/repo3/metadata/read", + "gateway/grandchild/config/read", "gateway/child/config/write", "gateway/child/message/read", + "gateway/child/message/write", "gateway/child/config/read"]}}' headers: Accept: - application/json @@ -6519,27 +6535,34 @@ interactions: - acr connected-registry permissions update Connection: - keep-alive + Content-Length: + - '360' + Content-Type: + - application/json ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2020-11-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:40.1793928+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:40.1793928+00:00"},"properties":{"creationDate":"2021-12-06T09:41:41.4904226+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:25:39.1215993+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:25:39.1215993+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Updating","actions":["repositories/repo3/content/read","gateway/grandchild/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","repositories/repo3/metadata/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-9541f56c-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '973' + - '940' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:20 GMT + - Fri, 31 Dec 2021 01:25:38 GMT expires: - '-1' pragma: @@ -6548,20 +6571,18 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -6571,24 +6592,27 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-9541f56c-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:00.696843+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:00.696843+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:39.5742692+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/grandchild/message/write","repositories/repo1/metadata/read","repositories/repo3/content/read"]}}' + string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-9541f56c-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '1036' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:21 GMT + - Fri, 31 Dec 2021 01:25:49 GMT expires: - '-1' pragma: @@ -6607,45 +6631,38 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/grandchild/message/read", "gateway/grandchild/config/read", - "repositories/repo3/metadata/read", "gateway/grandchild/config/write", "gateway/grandchild/message/write", - "repositories/repo3/content/read"]}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - acr connected-registry permissions update Connection: - keep-alive - Content-Length: - - '240' - Content-Type: - - application/json ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:22.7057712+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:22.7057712+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:39.5742692+00:00","provisioningState":"Updating","actions":["gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read","gateway/grandchild/config/write","gateway/grandchild/message/write","repositories/repo3/content/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:25:39.1215993+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:25:39.1215993+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/content/read","gateway/grandchild/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","repositories/repo3/metadata/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-a864bcd3-5678-11ec-9aec-00155d173227?api-version=2020-11-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '899' + - '941' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:23 GMT + - Fri, 31 Dec 2021 01:25:49 GMT expires: - '-1' pragma: @@ -6654,13 +6671,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -6675,24 +6694,25 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:25.8247413+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:25.8247413+00:00"},"properties":{"creationDate":"2021-12-06T09:40:27.1922099+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"certificates":[],"passwords":[{"creationTime":"2021-12-06T09:42:44.5745762+00:00","name":"password2"}]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:03.477327+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:03.477327+00:00"},"properties":{"creationDate":"2021-12-31T01:24:03.9377061+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1051' + - '821' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:24 GMT + - Fri, 31 Dec 2021 01:25:50 GMT expires: - '-1' pragma: @@ -6724,24 +6744,25 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:55.9697273+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:55.9697273+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","repositories/repo2/content/read","gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/message/write","repositories/repo1/metadata/read","repositories/repo3/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/child/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/grandchild/message/write","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:25:21.7873078+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:25:21.7873078+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:24:03.1558188+00:00","provisioningState":"Succeeded","actions":["repositories/repo2/metadata/read","gateway/grandchild/config/write","repositories/repo1/content/read","repositories/repo1/metadata/read","repositories/repo3/content/read","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read","repositories/repo2/content/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1316' + - '973' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:25 GMT + - Fri, 31 Dec 2021 01:25:51 GMT expires: - '-1' pragma: @@ -6760,11 +6781,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/grandchild/message/read", "repositories/repo3/metadata/read", - "gateway/grandchild/config/read", "gateway/rootregistry/config/read", "gateway/rootregistry/config/write", - "gateway/grandchild/config/write", "gateway/rootregistry/message/write", "gateway/child/config/read", - "gateway/child/config/write", "gateway/rootregistry/message/read", "gateway/child/message/read", - "gateway/grandchild/message/write", "repositories/repo3/content/read", "gateway/child/message/write"]}}' + body: '{"properties": {"actions": ["repositories/repo3/content/read", "gateway/grandchild/config/write", + "gateway/grandchild/message/write", "gateway/grandchild/message/read", "gateway/grandchild/config/read", + "repositories/repo3/metadata/read"]}}' headers: Accept: - application/json @@ -6775,32 +6794,33 @@ interactions: Connection: - keep-alive Content-Length: - - '508' + - '240' Content-Type: - application/json ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:26.5771637+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:26.5771637+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Updating","actions":["gateway/grandchild/message/read","repositories/repo3/metadata/read","gateway/grandchild/config/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/grandchild/config/write","gateway/rootregistry/message/write","gateway/child/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/grandchild/message/write","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:25:51.8058738+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:25:51.8058738+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:24:03.1558188+00:00","provisioningState":"Updating","actions":["repositories/repo3/content/read","gateway/grandchild/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-a864bcd3-5678-11ec-9aec-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-9541f56c-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '1177' + - '834' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:28 GMT + - Fri, 31 Dec 2021 01:25:51 GMT expires: - '-1' pragma: @@ -6820,7 +6840,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -6828,29 +6848,39 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r --remove --add + - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-9541f56c-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"status":"Succeeded"}' headers: + api-supported-versions: + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-9541f56c-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '617' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:27 GMT + - Fri, 31 Dec 2021 01:26:01 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -6872,26 +6902,25 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-a864bcd3-5678-11ec-9aec-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:25:51.8058738+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:25:51.8058738+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:24:03.1558188+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/content/read","gateway/grandchild/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-a864bcd3-5678-11ec-9aec-00155d173227?api-version=2020-11-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '22' + - '835' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:29 GMT + - Fri, 31 Dec 2021 01:26:01 GMT expires: - '-1' pragma: @@ -6913,7 +6942,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -6923,24 +6952,25 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:19.0720751+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:19.0720751+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read","gateway/grandchild/config/write","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/write","gateway/child/message/read","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:41.5903391+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:41.5903391+00:00"},"properties":{"creationDate":"2021-12-31T01:22:41.9324827+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2021-12-31T01:24:40.9220051+00:00","name":"password2"}]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1005' + - '901' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:29 GMT + - Fri, 31 Dec 2021 01:26:02 GMT expires: - '-1' pragma: @@ -6970,26 +7000,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r --remove --add + - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:56.0340698+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:56.0340698+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/content/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","repositories/repo3/metadata/read","repositories/repo2/content/read","repositories/repo2/metadata/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/rootregistry/message/read","gateway/child/message/write","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1403' + - '1251' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:30 GMT + - Fri, 31 Dec 2021 01:26:03 GMT expires: - '-1' pragma: @@ -7008,7 +7039,11 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"actions": ["repositories/repo3/content/read", "gateway/grandchild/config/write", + "gateway/child/config/read", "gateway/rootregistry/config/write", "gateway/grandchild/message/write", + "gateway/rootregistry/message/write", "gateway/rootregistry/config/read", "gateway/grandchild/message/read", + "gateway/grandchild/config/read", "gateway/child/config/write", "gateway/rootregistry/message/read", + "gateway/child/message/read", "gateway/child/message/write", "repositories/repo3/metadata/read"]}}' headers: Accept: - application/json @@ -7018,31 +7053,34 @@ interactions: - acr connected-registry permissions update Connection: - keep-alive + Content-Length: + - '508' + Content-Type: + - application/json ParameterSetName: - - -n -r --remove --add + - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2021-08-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:23.468157+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:23.468157+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:26.8255767+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:26.8255767+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:25.1382568+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:25.1382568+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:52.9916259+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:52.9916259+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}]}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:26:05.3409216+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:26:05.3409216+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Updating","actions":["repositories/repo3/content/read","gateway/grandchild/config/write","gateway/child/config/read","gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/grandchild/message/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/child/message/write","repositories/repo3/metadata/read"]}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-9541f56c-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '5436' + - '1112' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:31 GMT + - Fri, 31 Dec 2021 01:26:05 GMT expires: - '-1' pragma: @@ -7051,20 +7089,18 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -7072,26 +7108,29 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r --remove --add + - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-9541f56c-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:40.1793928+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:40.1793928+00:00"},"properties":{"creationDate":"2021-12-06T09:41:41.4904226+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-9541f56c-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '973' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:32 GMT + - Fri, 31 Dec 2021 01:26:15 GMT expires: - '-1' pragma: @@ -7123,26 +7162,25 @@ interactions: ParameterSetName: - -n -r --remove User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-a864bcd3-5678-11ec-9aec-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:26:05.3409216+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:26:05.3409216+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/content/read","gateway/grandchild/config/write","gateway/child/config/read","gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/grandchild/message/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/child/message/write","repositories/repo3/metadata/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-a864bcd3-5678-11ec-9aec-00155d173227?api-version=2020-11-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '22' + - '1113' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:34 GMT + - Fri, 31 Dec 2021 01:26:15 GMT expires: - '-1' pragma: @@ -7164,7 +7202,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -7172,36 +7210,29 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r --remove + - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:22.7057712+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:22.7057712+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:39.5742692+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read","gateway/grandchild/config/write","gateway/grandchild/message/write","repositories/repo3/content/read"]}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: - api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview cache-control: - no-cache content-length: - - '900' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:34 GMT + - Fri, 31 Dec 2021 01:26:15 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -7223,24 +7254,24 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:22.7057712+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:22.7057712+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:39.5742692+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read","gateway/grandchild/config/write","gateway/grandchild/message/write","repositories/repo3/content/read"]}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '900' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:35 GMT + - Fri, 31 Dec 2021 01:26:16 GMT expires: - '-1' pragma: @@ -7259,8 +7290,7 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/grandchild/message/write", "gateway/grandchild/config/write", - "gateway/grandchild/message/read", "gateway/grandchild/config/read"]}}' + body: null headers: Accept: - application/json @@ -7270,33 +7300,31 @@ interactions: - acr connected-registry permissions update Connection: - keep-alive - Content-Length: - - '169' - Content-Type: - - application/json ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:36.0140973+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:36.0140973+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:39.5742692+00:00","provisioningState":"Updating","actions":["gateway/grandchild/message/write","gateway/grandchild/config/write","gateway/grandchild/message/read","gateway/grandchild/config/read"]}}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:39.3451639+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:39.3451639+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:34.2781476+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:34.2781476+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"]}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:36.0765627+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:36.0765627+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:14.967125+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:14.967125+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* + * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}]}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-b268b946-5678-11ec-a8ed-00155d173227?api-version=2020-11-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '830' + - '4719' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:36 GMT + - Fri, 31 Dec 2021 01:26:17 GMT expires: - '-1' pragma: @@ -7305,13 +7333,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -7326,24 +7356,25 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:25.8247413+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:25.8247413+00:00"},"properties":{"creationDate":"2021-12-06T09:40:27.1922099+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"certificates":[],"passwords":[{"creationTime":"2021-12-06T09:42:44.5745762+00:00","name":"password2"}]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:03.477327+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:03.477327+00:00"},"properties":{"creationDate":"2021-12-31T01:24:03.9377061+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1051' + - '821' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:36 GMT + - Fri, 31 Dec 2021 01:26:18 GMT expires: - '-1' pragma: @@ -7375,24 +7406,25 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:26.5771637+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:26.5771637+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/read","repositories/repo3/metadata/read","gateway/grandchild/config/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/grandchild/config/write","gateway/rootregistry/message/write","gateway/child/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/grandchild/message/write","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:25:51.8058738+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:25:51.8058738+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:24:03.1558188+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/content/read","gateway/grandchild/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1178' + - '835' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:37 GMT + - Fri, 31 Dec 2021 01:26:17 GMT expires: - '-1' pragma: @@ -7411,12 +7443,8 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/grandchild/message/read", "gateway/grandchild/config/read", - "repositories/repo1/content/read", "gateway/grandchild/config/write", "gateway/rootregistry/message/write", - "repositories/repo1/metadata/read", "repositories/repo3/metadata/read", "gateway/rootregistry/config/read", - "gateway/rootregistry/config/write", "gateway/child/config/read", "gateway/child/config/write", - "gateway/rootregistry/message/read", "gateway/child/message/read", "gateway/grandchild/message/write", - "repositories/repo3/content/read", "gateway/child/message/write"]}}' + body: '{"properties": {"actions": ["gateway/grandchild/message/write", "gateway/grandchild/config/read", + "gateway/grandchild/config/write", "gateway/grandchild/message/read"]}}' headers: Accept: - application/json @@ -7427,32 +7455,33 @@ interactions: Connection: - keep-alive Content-Length: - - '579' + - '169' Content-Type: - application/json ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:38.5192751+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:38.5192751+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Updating","actions":["gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/message/write","repositories/repo1/metadata/read","repositories/repo3/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/child/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/grandchild/message/write","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:26:19.1128264+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:26:19.1128264+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:24:03.1558188+00:00","provisioningState":"Updating","actions":["gateway/grandchild/message/write","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-b268b946-5678-11ec-a8ed-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-ad3510be-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '1246' + - '765' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:38 GMT + - Fri, 31 Dec 2021 01:26:19 GMT expires: - '-1' pragma: @@ -7472,7 +7501,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -7482,24 +7511,27 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-ad3510be-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:12.3014993+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:12.3014993+00:00"},"properties":{"creationDate":"2021-12-06T09:41:13.6084714+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-ad3510be-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '958' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:39 GMT + - Fri, 31 Dec 2021 01:26:29 GMT expires: - '-1' pragma: @@ -7529,28 +7561,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r --remove + - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-a864bcd3-5678-11ec-9aec-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:26:19.1128264+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:26:19.1128264+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:24:03.1558188+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/write","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-a864bcd3-5678-11ec-9aec-00155d173227?api-version=2020-11-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '22' + - '766' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:39 GMT + - Fri, 31 Dec 2021 01:26:29 GMT expires: - '-1' pragma: @@ -7582,24 +7613,25 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:19.0720751+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:19.0720751+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo3/metadata/read","gateway/grandchild/config/write","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/write","gateway/child/message/read","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:41.5903391+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:41.5903391+00:00"},"properties":{"creationDate":"2021-12-31T01:22:41.9324827+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2021-12-31T01:24:40.9220051+00:00","name":"password2"}]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1005' + - '901' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:39 GMT + - Fri, 31 Dec 2021 01:26:30 GMT expires: - '-1' pragma: @@ -7621,7 +7653,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -7629,26 +7661,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r --remove + - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:38.5192751+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:38.5192751+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/message/write","repositories/repo1/metadata/read","repositories/repo3/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/child/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/grandchild/message/write","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:26:05.3409216+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:26:05.3409216+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/content/read","gateway/grandchild/config/write","gateway/child/config/read","gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/grandchild/message/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/child/message/write","repositories/repo3/metadata/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1247' + - '1113' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:41 GMT + - Fri, 31 Dec 2021 01:26:31 GMT expires: - '-1' pragma: @@ -7667,10 +7700,12 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/grandchild/message/read", "repositories/repo1/content/read", - "gateway/grandchild/config/read", "gateway/grandchild/config/write", "gateway/child/config/read", - "gateway/child/config/write", "gateway/grandchild/message/write", "gateway/child/message/read", - "repositories/repo1/metadata/read", "gateway/child/message/write"]}}' + body: '{"properties": {"actions": ["repositories/repo3/content/read", "repositories/repo1/metadata/read", + "gateway/rootregistry/message/write", "gateway/rootregistry/config/read", "gateway/grandchild/config/read", + "gateway/child/config/write", "gateway/child/message/read", "repositories/repo3/metadata/read", + "repositories/repo1/content/read", "gateway/grandchild/config/write", "gateway/rootregistry/config/write", + "gateway/grandchild/message/write", "gateway/grandchild/message/read", "gateway/rootregistry/message/read", + "gateway/child/message/write", "gateway/child/config/read"]}}' headers: Accept: - application/json @@ -7681,32 +7716,33 @@ interactions: Connection: - keep-alive Content-Length: - - '360' + - '579' Content-Type: - application/json ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:40.9172532+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:40.9172532+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Updating","actions":["gateway/grandchild/message/read","repositories/repo1/content/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/write","gateway/child/message/read","repositories/repo1/metadata/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:26:31.5959219+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:26:31.5959219+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Updating","actions":["repositories/repo3/content/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/rootregistry/message/read","gateway/child/message/write","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-b268b946-5678-11ec-a8ed-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-ad3510be-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '1004' + - '1181' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:41 GMT + - Fri, 31 Dec 2021 01:26:31 GMT expires: - '-1' pragma: @@ -7726,37 +7762,47 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions show + - acr connected-registry permissions update Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-ad3510be-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"status":"Succeeded"}' headers: + api-supported-versions: + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-ad3510be-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '617' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:43 GMT + - Fri, 31 Dec 2021 01:26:41 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -7768,34 +7814,35 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions show + - acr connected-registry permissions update Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:26:31.5959219+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:26:31.5959219+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/content/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/rootregistry/message/read","gateway/child/message/write","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1403' + - '1182' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:43 GMT + - Fri, 31 Dec 2021 01:26:41 GMT expires: - '-1' pragma: @@ -7821,30 +7868,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions show + - acr connected-registry permissions update Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2020-11-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:24.6763241+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:24.6763241+00:00"},"properties":{"creationDate":"2021-12-31T01:23:24.9975118+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1403' + - '808' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:45 GMT + - Fri, 31 Dec 2021 01:26:42 GMT expires: - '-1' pragma: @@ -7870,31 +7918,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions show + - acr connected-registry permissions update Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild?api-version=2021-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:52.9916259+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:52.9916259+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:25:39.1215993+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:25:39.1215993+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/content/read","gateway/grandchild/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","repositories/repo3/metadata/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1379' + - '941' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:46 GMT + - Fri, 31 Dec 2021 01:26:42 GMT expires: - '-1' pragma: @@ -7912,6 +7960,63 @@ interactions: status: code: 200 message: OK +- request: + body: '{"properties": {"actions": ["repositories/repo1/content/read", "gateway/grandchild/config/write", + "repositories/repo1/metadata/read", "gateway/grandchild/message/write", "gateway/grandchild/message/read", + "gateway/grandchild/config/read", "gateway/child/config/write", "gateway/child/message/read", + "gateway/child/message/write", "gateway/child/config/read"]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr connected-registry permissions update + Connection: + - keep-alive + Content-Length: + - '360' + Content-Type: + - application/json + ParameterSetName: + - -n -r --remove --add + User-Agent: + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:26:43.7246221+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:26:43.7246221+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Updating","actions":["repositories/repo1/content/read","gateway/grandchild/config/write","repositories/repo1/metadata/read","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write","gateway/child/config/read"]}}' + headers: + api-supported-versions: + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-ad3510be-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview + cache-control: + - no-cache + content-length: + - '940' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 31 Dec 2021 01:26:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created - request: body: null headers: @@ -7926,18 +8031,19 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-b268b946-5678-11ec-a8ed-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-ad3510be-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild/operationStatuses/token-b268b946-5678-11ec-a8ed-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-ad3510be-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: @@ -7945,7 +8051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:46 GMT + - Fri, 31 Dec 2021 01:26:54 GMT expires: - '-1' pragma: @@ -7977,24 +8083,25 @@ interactions: ParameterSetName: - -n -r --remove --add User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:36.0140973+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:36.0140973+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:39.5742692+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/write","gateway/grandchild/config/write","gateway/grandchild/message/read","gateway/grandchild/config/read"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:26:43.7246221+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:26:43.7246221+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","gateway/grandchild/config/write","repositories/repo1/metadata/read","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '831' + - '941' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:47 GMT + - Fri, 31 Dec 2021 01:26:54 GMT expires: - '-1' pragma: @@ -8026,34 +8133,27 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:40.1793928+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:40.1793928+00:00"},"properties":{"creationDate":"2021-12-06T09:41:41.4904226+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: - api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview cache-control: - no-cache content-length: - - '973' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:46 GMT + - Fri, 31 Dec 2021 01:26:55 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -8065,36 +8165,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions update + - acr connected-registry permissions show Connection: - keep-alive ParameterSetName: - - -n -r --remove --add + - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-b268b946-5678-11ec-a8ed-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-b268b946-5678-11ec-a8ed-00155d173227?api-version=2020-11-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '22' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:48 GMT + - Fri, 31 Dec 2021 01:26:55 GMT expires: - '-1' pragma: @@ -8126,24 +8224,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:36.0140973+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:36.0140973+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:39.5742692+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/write","gateway/grandchild/config/write","gateway/grandchild/message/read","gateway/grandchild/config/read"]}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '831' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:48 GMT + - Fri, 31 Dec 2021 01:26:56 GMT expires: - '-1' pragma: @@ -8165,34 +8263,35 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions update + - acr connected-registry permissions show Connection: - keep-alive ParameterSetName: - - -n -r --remove --add + - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:38.5192751+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:38.5192751+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/message/write","repositories/repo1/metadata/read","repositories/repo3/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/child/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/grandchild/message/write","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:14.967125+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:14.967125+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* + * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '1247' + - '1178' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:49 GMT + - Fri, 31 Dec 2021 01:26:56 GMT expires: - '-1' pragma: @@ -8218,33 +8317,41 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry delete + - acr connected-registry permissions show Connection: - keep-alive ParameterSetName: - - -n -r --cleanup -y + - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2020-11-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:03.477327+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:03.477327+00:00"},"properties":{"creationDate":"2021-12-31T01:24:03.9377061+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' headers: + api-supported-versions: + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '617' + - '821' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:49 GMT + - Fri, 31 Dec 2021 01:26:57 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -8260,30 +8367,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry delete + - acr connected-registry permissions show Connection: - keep-alive ParameterSetName: - - -n -r --cleanup -y + - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:26:19.1128264+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:26:19.1128264+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:24:03.1558188+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/write","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/grandchild/message/read"]}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1403' + - '766' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:50 GMT + - Fri, 31 Dec 2021 01:26:58 GMT expires: - '-1' pragma: @@ -8315,34 +8423,27 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: - api-supported-versions: - - 2021-06-01-preview cache-control: - no-cache content-length: - - '1403' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:53 GMT + - Fri, 31 Dec 2021 01:26:58 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked + - max-age=31536000; includeSubDomains vary: - Accept-Encoding x-content-type-options: @@ -8354,36 +8455,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions update + - acr connected-registry delete Connection: - keep-alive ParameterSetName: - - -n -r --remove --add + - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-b268b946-5678-11ec-a8ed-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-b268b946-5678-11ec-a8ed-00155d173227?api-version=2020-11-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '22' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:53 GMT + - Fri, 31 Dec 2021 01:26:58 GMT expires: - '-1' pragma: @@ -8405,34 +8504,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions update + - acr connected-registry delete Connection: - keep-alive ParameterSetName: - - -n -r --remove --add + - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:40.9172532+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:40.9172532+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/read","repositories/repo1/content/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/write","gateway/child/message/read","repositories/repo1/metadata/read","gateway/child/message/write"]}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1005' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:53 GMT + - Fri, 31 Dec 2021 01:26:59 GMT expires: - '-1' pragma: @@ -8464,25 +8563,25 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:52.9916259+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:52.9916259+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:14.967125+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:14.967125+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","schedule":"* * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '1379' + - '1178' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:54 GMT + - Fri, 31 Dec 2021 01:27:00 GMT expires: - '-1' pragma: @@ -8516,8 +8615,8 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/grandchild?api-version=2021-08-01-preview response: @@ -8525,13 +8624,13 @@ interactions: string: '' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 06 Dec 2021 09:43:54 GMT + - Fri, 31 Dec 2021 01:27:00 GMT expires: - '-1' pragma: @@ -8561,24 +8660,25 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:40.1793928+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:40.1793928+00:00"},"properties":{"creationDate":"2021-12-06T09:41:41.4904226+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild","name":"grandchild","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:03.477327+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:03.477327+00:00"},"properties":{"creationDate":"2021-12-31T01:24:03.9377061+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '973' + - '821' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:55 GMT + - Fri, 31 Dec 2021 01:27:00 GMT expires: - '-1' pragma: @@ -8612,8 +8712,8 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/grandchild?api-version=2020-11-01-preview response: @@ -8621,7 +8721,8 @@ interactions: string: 'null' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: @@ -8629,11 +8730,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:56 GMT + - Fri, 31 Dec 2021 01:27:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/token-befff14e-5678-11ec-9ca1-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/token-c65ba6ca-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview pragma: - no-cache server: @@ -8663,8 +8764,8 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/grandchild?api-version=2020-11-01-preview response: @@ -8672,7 +8773,8 @@ interactions: string: 'null' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: @@ -8680,11 +8782,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:57 GMT + - Fri, 31 Dec 2021 01:27:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/token-befff14e-5678-11ec-9ca1-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/token-c65ba6ca-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview pragma: - no-cache server: @@ -8712,27 +8814,27 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries?api-version=2021-08-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:23.468157+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:23.468157+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:42:26.8255767+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:42:26.8255767+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* - * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:25.1382568+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:25.1382568+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/connectedRegistry","name":"connectedRegistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:39.3451639+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:39.3451639+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadWrite","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/connectedRegistry","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","name":"rootregistry","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:24:34.2781476+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:24:34.2781476+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","schedule":"* + * * * *","messageTtl":"P2D","gatewayEndpoint":"clireg000002.eastus.data.azurecr.io"}},"clientTokenIds":["/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/clientToken2"],"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"},"notificationsList":["*:*"]}},{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:36.0765627+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:36.0765627+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}]}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '4056' + - '3540' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:57 GMT + - Fri, 31 Dec 2021 01:27:03 GMT expires: - '-1' pragma: @@ -8764,24 +8866,25 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:12.3014993+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:12.3014993+00:00"},"properties":{"creationDate":"2021-12-06T09:41:13.6084714+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:24.6763241+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:24.6763241+00:00"},"properties":{"creationDate":"2021-12-31T01:23:24.9975118+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '958' + - '808' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:58 GMT + - Fri, 31 Dec 2021 01:27:03 GMT expires: - '-1' pragma: @@ -8813,24 +8916,25 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:40.9172532+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:40.9172532+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/read","repositories/repo1/content/read","gateway/grandchild/config/read","gateway/grandchild/config/write","gateway/child/config/read","gateway/child/config/write","gateway/grandchild/message/write","gateway/child/message/read","repositories/repo1/metadata/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:26:43.7246221+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:26:43.7246221+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","gateway/grandchild/config/write","repositories/repo1/metadata/read","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","gateway/child/message/write","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1005' + - '941' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:58 GMT + - Fri, 31 Dec 2021 01:27:04 GMT expires: - '-1' pragma: @@ -8849,9 +8953,9 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"actions": ["repositories/repo1/content/read", "gateway/child/config/read", - "gateway/child/config/write", "repositories/repo1/metadata/read", "gateway/child/message/read", - "gateway/child/message/write"]}}' + body: '{"properties": {"actions": ["repositories/repo1/content/read", "repositories/repo1/metadata/read", + "gateway/child/config/write", "gateway/child/message/write", "gateway/child/message/read", + "gateway/child/config/read"]}}' headers: Accept: - application/json @@ -8868,26 +8972,27 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:44:00.017419+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:44:00.017419+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Updating","actions":["repositories/repo1/content/read","gateway/child/config/read","gateway/child/config/write","repositories/repo1/metadata/read","gateway/child/message/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:27:04.8704162+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:27:04.8704162+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Updating","actions":["repositories/repo1/content/read","repositories/repo1/metadata/read","gateway/child/config/write","gateway/child/message/write","gateway/child/message/read","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-befff14e-5678-11ec-9ca1-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-c65ba6ca-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '866' + - '804' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:43:59 GMT + - Fri, 31 Dec 2021 01:27:04 GMT expires: - '-1' pragma: @@ -8907,7 +9012,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -8917,24 +9022,20 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/token-c65ba6ca-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:40:25.8247413+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:25.8247413+00:00"},"properties":{"creationDate":"2021-12-06T09:40:27.1922099+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"certificates":[],"passwords":[{"creationTime":"2021-12-06T09:42:44.5745762+00:00","name":"password2"}]},"status":"enabled"}}' + string: '' headers: - api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview cache-control: - no-cache content-length: - - '1051' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Mon, 06 Dec 2021 09:44:00 GMT + - Fri, 31 Dec 2021 01:27:11 GMT expires: - '-1' pragma: @@ -8943,10 +9044,6 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: @@ -8956,7 +9053,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -8966,24 +9063,20 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/token-c65ba6ca-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:43:38.5192751+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:43:38.5192751+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Succeeded","actions":["gateway/grandchild/message/read","gateway/grandchild/config/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/message/write","repositories/repo1/metadata/read","repositories/repo3/metadata/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/child/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/grandchild/message/write","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '' headers: - api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview cache-control: - no-cache content-length: - - '1247' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Mon, 06 Dec 2021 09:44:01 GMT + - Fri, 31 Dec 2021 01:27:13 GMT expires: - '-1' pragma: @@ -8992,57 +9085,46 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff status: code: 200 message: OK - request: - body: '{"properties": {"actions": ["gateway/child/message/read", "repositories/repo3/metadata/read", - "repositories/repo1/content/read", "gateway/rootregistry/config/read", "gateway/rootregistry/config/write", - "gateway/rootregistry/message/write", "gateway/child/config/read", "gateway/child/config/write", - "repositories/repo1/metadata/read", "gateway/rootregistry/message/read", "repositories/repo3/content/read", - "gateway/child/message/write"]}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - acr connected-registry delete Connection: - keep-alive - Content-Length: - - '439' - Content-Type: - - application/json ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-c65ba6ca-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:44:02.4000534+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:44:02.4000534+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Updating","actions":["gateway/child/message/read","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/rootregistry/message/write","gateway/child/config/read","gateway/child/config/write","repositories/repo1/metadata/read","gateway/rootregistry/message/read","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-befff14e-5678-11ec-9ca1-00155d173227?api-version=2020-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-c65ba6ca-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '1110' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:01 GMT + - Fri, 31 Dec 2021 01:27:14 GMT expires: - '-1' pragma: @@ -9051,48 +9133,58 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions show + - acr connected-registry delete Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:27:04.8704162+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:27:04.8704162+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/metadata/read","gateway/child/config/write","gateway/child/message/write","gateway/child/message/read","gateway/child/config/read"]}}' headers: + api-supported-versions: + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '617' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:02 GMT + - Fri, 31 Dec 2021 01:27:14 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -9108,30 +9200,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions show + - acr connected-registry delete Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken?api-version=2020-11-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/syncToken","name":"syncToken","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:41.5903391+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:41.5903391+00:00"},"properties":{"creationDate":"2021-12-31T01:22:41.9324827+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","credentials":{"passwords":[{"creationTime":"2021-12-31T01:24:40.9220051+00:00","name":"password2"}]},"status":"enabled"}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1403' + - '901' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:03 GMT + - Fri, 31 Dec 2021 01:27:15 GMT expires: - '-1' pragma: @@ -9157,30 +9250,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions show + - acr connected-registry delete Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:26:31.5959219+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:26:31.5959219+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/content/read","repositories/repo1/metadata/read","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/grandchild/config/read","gateway/child/config/write","gateway/child/message/read","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/grandchild/config/write","gateway/rootregistry/config/write","gateway/grandchild/message/write","gateway/grandchild/message/read","gateway/rootregistry/message/read","gateway/child/message/write","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1403' + - '1182' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:04 GMT + - Fri, 31 Dec 2021 01:27:16 GMT expires: - '-1' pragma: @@ -9199,38 +9293,48 @@ interactions: code: 200 message: OK - request: - body: null + body: '{"properties": {"actions": ["repositories/repo3/content/read", "repositories/repo1/metadata/read", + "repositories/repo1/content/read", "gateway/child/config/read", "gateway/rootregistry/config/write", + "gateway/rootregistry/message/write", "gateway/rootregistry/config/read", "gateway/child/config/write", + "gateway/rootregistry/message/read", "gateway/child/message/read", "gateway/child/message/write", + "repositories/repo3/metadata/read"]}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions show + - acr connected-registry delete Connection: - keep-alive + Content-Length: + - '439' + Content-Type: + - application/json ParameterSetName: - - -n -r + - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2021-08-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:25.1382568+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:25.1382568+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:27:16.6429513+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:27:16.6429513+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Updating","actions":["repositories/repo3/content/read","repositories/repo1/metadata/read","repositories/repo1/content/read","gateway/child/config/read","gateway/rootregistry/config/write","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/child/message/write","repositories/repo3/metadata/read"]}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-c65ba6ca-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '1371' + - '1045' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:05 GMT + - Fri, 31 Dec 2021 01:27:16 GMT expires: - '-1' pragma: @@ -9239,47 +9343,48 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry permissions show + - acr connected-registry delete Connection: - keep-alive ParameterSetName: - - -n -r + - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-c65ba6ca-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:12.3014993+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:12.3014993+00:00"},"properties":{"creationDate":"2021-12-06T09:41:13.6084714+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '{"status":"Succeeded"}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-c65ba6ca-69d8-11ec-a126-00155d249691?api-version=2020-11-01-preview cache-control: - no-cache content-length: - - '958' + - '22' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:05 GMT + - Fri, 31 Dec 2021 01:27:27 GMT expires: - '-1' pragma: @@ -9311,20 +9416,25 @@ interactions: ParameterSetName: - -n -r --cleanup -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/token-befff14e-5678-11ec-9ca1-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview response: body: - string: '' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:27:16.6429513+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:27:16.6429513+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:22:41.1224653+00:00","provisioningState":"Succeeded","actions":["repositories/repo3/content/read","repositories/repo1/metadata/read","repositories/repo1/content/read","gateway/child/config/read","gateway/rootregistry/config/write","gateway/rootregistry/message/write","gateway/rootregistry/config/read","gateway/child/config/write","gateway/rootregistry/message/read","gateway/child/message/read","gateway/child/message/write","repositories/repo3/metadata/read"]}}' headers: + api-supported-versions: + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '0' + - '1046' + content-type: + - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:06 GMT + - Fri, 31 Dec 2021 01:27:27 GMT expires: - '-1' pragma: @@ -9333,6 +9443,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -9352,34 +9466,27 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:44:00.017419+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:44:00.017419+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","gateway/child/config/read","gateway/child/config/write","repositories/repo1/metadata/read","gateway/child/message/read","gateway/child/message/write"]}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: - api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview cache-control: - no-cache content-length: - - '867' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:06 GMT + - Fri, 31 Dec 2021 01:27:27 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -9395,33 +9502,40 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry delete + - acr connected-registry permissions show Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:39:42.6473516Z"}}]}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '617' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:06 GMT + - Fri, 31 Dec 2021 01:27:27 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: @@ -9433,30 +9547,34 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry delete + - acr connected-registry permissions show Connection: - keep-alive ParameterSetName: - - -n -r --cleanup -y + - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/EASTUS/operationResults/token-befff14e-5678-11ec-9ca1-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '0' + - '1316' + content-type: + - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:08 GMT + - Fri, 31 Dec 2021 01:27:29 GMT expires: - '-1' pragma: @@ -9465,6 +9583,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff status: @@ -9478,30 +9600,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry delete + - acr connected-registry permissions show Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:36.0765627+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:36.0765627+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '1403' + - '1172' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:09 GMT + - Fri, 31 Dec 2021 01:27:29 GMT expires: - '-1' pragma: @@ -9527,30 +9650,31 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry delete + - acr connected-registry permissions show Connection: - keep-alive ParameterSetName: - - -n -r -y + - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2020-11-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:39:42.6473516+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:40:01.721012+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-06T09:39:42.6473516Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-06T09:39:45.556857+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:24.6763241+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:24.6763241+00:00"},"properties":{"creationDate":"2021-12-31T01:23:24.9975118+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2021-06-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1403' + - '808' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:10 GMT + - Fri, 31 Dec 2021 01:27:29 GMT expires: - '-1' pragma: @@ -9572,36 +9696,35 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr connected-registry delete + - acr connected-registry permissions show Connection: - keep-alive ParameterSetName: - - -n -r --cleanup -y + - -n -r User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-befff14e-5678-11ec-9ca1-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:27:04.8704162+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:27:04.8704162+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-31T01:23:24.0248634+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","repositories/repo1/metadata/read","gateway/child/config/write","gateway/child/message/write","gateway/child/message/read","gateway/child/config/read"]}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child/operationStatuses/token-befff14e-5678-11ec-9ca1-00155d173227?api-version=2020-11-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '22' + - '805' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:09 GMT + - Fri, 31 Dec 2021 01:27:30 GMT expires: - '-1' pragma: @@ -9633,35 +9756,27 @@ interactions: ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2021-08-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:25.1382568+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:25.1382568+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* - * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxi7febcuiwb3xzcfd3kokf2hponj6pzonueyb222nayx2peugsvbqnjimv2idnt7w/providers/Microsoft.ContainerRegistry/registries/cliregspmfylj7ubi4ap","name":"cliregspmfylj7ubi4ap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:33:41.0073302Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:33:54.6201734Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:09.0751495Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: - api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview cache-control: - no-cache content-length: - - '1371' + - '12457' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:10 GMT + - Fri, 31 Dec 2021 01:27:30 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -9673,7 +9788,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -9681,26 +9796,26 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r --cleanup -y + - -n -r -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:44:00.017419+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:44:00.017419+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:41:11.624093+00:00","provisioningState":"Succeeded","actions":["repositories/repo1/content/read","gateway/child/config/read","gateway/child/config/write","repositories/repo1/metadata/read","gateway/child/message/read","gateway/child/message/write"]}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '867' + - '1316' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:10 GMT + - Fri, 31 Dec 2021 01:27:31 GMT expires: - '-1' pragma: @@ -9729,27 +9844,27 @@ interactions: - acr connected-registry delete Connection: - keep-alive - Content-Length: - - '0' ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2021-08-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '' + string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:22:09.0751495+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:22:23.2321234+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-31T01:22:09.0751495Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T01:22:10.3609519+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":true,"dataEndpointHostNames":["clireg000002.eastus.data.azurecr.io"],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: api-supported-versions: - - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - - '0' + - '1316' + content-type: + - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:10 GMT + - Fri, 31 Dec 2021 01:27:32 GMT expires: - '-1' pragma: @@ -9758,10 +9873,12 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14998' status: code: 200 message: OK @@ -9769,7 +9886,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -9777,28 +9894,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r --cleanup -y + - -n -r -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-befff14e-5678-11ec-9ca1-00155d173227?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2021-08-01-preview response: body: - string: '{"status":"Succeeded"}' + string: '{"type":"Microsoft.ContainerRegistry/registries/connectedRegistries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:36.0765627+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:36.0765627+00:00"},"properties":{"provisioningState":"Succeeded","mode":"ReadOnly","connectionState":"Offline","activation":{"status":"Inactive"},"parent":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/rootregistry","syncProperties":{"tokenId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","schedule":"* + * * * *","messageTtl":"P2D"}},"loginServer":{"tls":{"certificate":{}}},"logging":{"logLevel":"Information","auditLogStatus":"Disabled"}}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map/operationStatuses/token-befff14e-5678-11ec-9ca1-00155d173227?api-version=2020-11-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '22' + - '1172' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:13 GMT + - Fri, 31 Dec 2021 01:27:33 GMT expires: - '-1' pragma: @@ -9827,27 +9943,27 @@ interactions: - acr connected-registry delete Connection: - keep-alive + Content-Length: + - '0' ParameterSetName: - -n -r -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2020-11-01-preview + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/connectedRegistries/child?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:41:12.3014993+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:41:12.3014993+00:00"},"properties":{"creationDate":"2021-12-06T09:41:13.6084714+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"certificates":[],"passwords":[]},"status":"enabled"}}' + string: '' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-12-01-preview cache-control: - no-cache content-length: - - '958' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Mon, 06 Dec 2021 09:44:13 GMT + - Fri, 31 Dec 2021 01:27:33 GMT expires: - '-1' pragma: @@ -9856,12 +9972,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' status: code: 200 message: OK @@ -9869,7 +9983,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate CommandName: @@ -9877,26 +9991,27 @@ interactions: Connection: - keep-alive ParameterSetName: - - -n -r --cleanup -y + - -n -r -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map?api-version=2020-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child?api-version=2020-11-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/scopeMaps","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/syncToken-scope-map","name":"syncToken-scope-map","systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-12-06T09:44:02.4000534+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-06T09:44:02.4000534+00:00"},"properties":{"type":"UserDefined","creationDate":"2021-12-06T09:40:25.2412232+00:00","provisioningState":"Succeeded","actions":["gateway/child/message/read","repositories/repo3/metadata/read","repositories/repo1/content/read","gateway/rootregistry/config/read","gateway/rootregistry/config/write","gateway/rootregistry/message/write","gateway/child/config/read","gateway/child/config/write","repositories/repo1/metadata/read","gateway/rootregistry/message/read","repositories/repo3/content/read","gateway/child/message/write"]}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/tokens","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/tokens/child","name":"child","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T01:23:24.6763241+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T01:23:24.6763241+00:00"},"properties":{"creationDate":"2021-12-31T01:23:24.9975118+00:00","provisioningState":"Succeeded","scopeMapId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/scopeMaps/child","credentials":{"passwords":[]},"status":"enabled"}}' headers: api-supported-versions: - - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-05-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-12-01-preview cache-control: - no-cache content-length: - - '1111' + - '808' content-type: - application/json; charset=utf-8 date: - - Mon, 06 Dec 2021 09:44:13 GMT + - Fri, 31 Dec 2021 01:27:32 GMT expires: - '-1' pragma: @@ -9930,22 +10045,22 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: string: '' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: - '0' date: - - Mon, 06 Dec 2021 09:44:21 GMT + - Fri, 31 Dec 2021 01:27:38 GMT expires: - '-1' pragma: @@ -9957,7 +10072,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_replication.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_replication.yaml index df5d5728ef4..77eafdf24f0 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_replication.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_replication.yaml @@ -18,24 +18,26 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.1302009Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.1104836+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:27.2182538+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:27.2182538+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:27.2182538Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:48.3035169+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-63dc0226-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-603b496e-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: - - '1362' + - '1279' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:06 GMT + - Thu, 30 Dec 2021 21:06:47 GMT expires: - '-1' pragma: @@ -47,7 +49,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 201 message: Created @@ -65,16 +67,18 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-63dc0226-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-603b496e-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview response: body: string: '{"status":"Succeeded"}' headers: + api-supported-versions: + - 2021-08-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-63dc0226-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-603b496e-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: @@ -82,7 +86,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:17 GMT + - Thu, 30 Dec 2021 21:06:58 GMT expires: - '-1' pragma: @@ -114,22 +118,24 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.1302009Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.1104836+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:27.2182538+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:27.2182538+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:27.2182538Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:48.3035169+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1363' + - '1280' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:17 GMT + - Thu, 30 Dec 2021 21:06:59 GMT expires: - '-1' pragma: @@ -161,21 +167,21 @@ interactions: ParameterSetName: - -n -r -l User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.2 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rghn2vsklcwj4rxj2yenyrwuicy3orfxsdbfqoru5ma4vtmc5pcprh4v7vwwu4tfq3d/providers/Microsoft.ContainerRegistry/registries/cliregys6w3k7j6e4fme","name":"cliregys6w3k7j6e4fme","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.3821955Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.3821955Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzwgbjviw7dbzgsr3kghwbypia2zhgirs2tscvnonkpbsflcj5fmsmn7opzeron57/providers/Microsoft.ContainerRegistry/registries/cliregujii5hs3akl336","name":"cliregujii5hs3akl336","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.9354962Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.9354962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo4s4myuxonjwppqkdhungd22lv5t3rqcc45cmk6tyancc3pkba7fjye4uftv6wqzk/providers/Microsoft.ContainerRegistry/registries/cliregl65ebkle6edykr","name":"cliregl65ebkle6edykr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:06.9454863Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:06.9454863Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-18T02:47:58.9284588Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx5ai4qdiirwoxchbbot6nomrp2mbbgss7el6d5mtyycbft6j5c6njz37pgt6otzis/providers/Microsoft.ContainerRegistry/registries/cliregl42ot2htbniuuu","name":"cliregl42ot2htbniuuu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:35:35.6450638Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:35:35.6450638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2jrdtwxlozh33i7pmr2dg3mlx6m76m7jxmp23kzl5ndiekkjtoq3ur3ryyh4iwx6/providers/Microsoft.ContainerRegistry/registries/cliregkunelu63d5hheg","name":"cliregkunelu63d5hheg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:47:17.661553Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:47:17.661553Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcawcbt66ltcxdj6xvspudy3mb5725ivqgf3xoq6ogescjt3izy76wtic65dtceim5/providers/Microsoft.ContainerRegistry/registries/clireggkb3ar34jr72n3","name":"clireggkb3ar34jr72n3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:27.2182538Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:27.2182538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglp5egpxt3rgqmb2sepr3rnmnxjrgdyj7qv2l23t5kiboyu36abpimlcnrq2pherns/providers/Microsoft.ContainerRegistry/registries/testregc6yrujngor7k4","name":"testregc6yrujngor7k4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:51.6108377Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:51.6108377Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '4957' + - '13684' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:18 GMT + - Thu, 30 Dec 2021 21:06:59 GMT expires: - '-1' pragma: @@ -203,22 +209,24 @@ interactions: ParameterSetName: - -n -r -l User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.1302009Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.1104836+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:27.2182538+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:27.2182538+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:27.2182538Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:48.3035169+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1363' + - '1280' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:20 GMT + - Thu, 30 Dec 2021 21:06:58 GMT expires: - '-1' pragma: @@ -254,24 +262,26 @@ interactions: ParameterSetName: - -n -r -l User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:22.1577307+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:22.1577307+00:00"},"properties":{"provisioningState":"Creating","status":{"timestamp":"2021-08-18T01:27:23.0796935Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:00.3061019+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:00.3061019+00:00"},"properties":{"provisioningState":"Creating","status":{"timestamp":"2021-12-30T21:07:01.2409156Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' headers: + api-supported-versions: + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-6d69b554-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-7486ba2a-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: - - '760' + - '693' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:23 GMT + - Thu, 30 Dec 2021 21:07:00 GMT expires: - '-1' pragma: @@ -283,7 +293,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -301,65 +311,18 @@ interactions: ParameterSetName: - -n -r -l User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-6d69b554-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview - response: - body: - string: '{"status":"Creating"}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-6d69b554-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview - cache-control: - - no-cache - content-length: - - '21' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 18 Aug 2021 01:27:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr replication create - Connection: - - keep-alive - ParameterSetName: - - -n -r -l - User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-6d69b554-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-7486ba2a-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview response: body: string: '{"status":"Succeeded"}' headers: + api-supported-versions: + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-6d69b554-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-7486ba2a-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: @@ -367,7 +330,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:44 GMT + - Thu, 30 Dec 2021 21:07:10 GMT expires: - '-1' pragma: @@ -399,22 +362,24 @@ interactions: ParameterSetName: - -n -r -l User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:22.1577307+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:22.1577307+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2021-08-18T01:27:36.6302977Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:00.3061019+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:00.3061019+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2021-12-30T21:07:09.4511052Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' headers: + api-supported-versions: + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: - - '785' + - '718' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:44 GMT + - Thu, 30 Dec 2021 21:07:11 GMT expires: - '-1' pragma: @@ -446,21 +411,21 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.2 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzwgbjviw7dbzgsr3kghwbypia2zhgirs2tscvnonkpbsflcj5fmsmn7opzeron57/providers/Microsoft.ContainerRegistry/registries/cliregujii5hs3akl336","name":"cliregujii5hs3akl336","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.9354962Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.9354962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk4kxmny46372uwckxx2xkffxyt5tigvkzprnymw3g3jcfu4rw6icsu6kk2dx3flwa/providers/Microsoft.ContainerRegistry/registries/cliregohmynbvhs3ci2m","name":"cliregohmynbvhs3ci2m","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:42.8396051Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:42.8396051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-18T02:47:58.9284588Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2jrdtwxlozh33i7pmr2dg3mlx6m76m7jxmp23kzl5ndiekkjtoq3ur3ryyh4iwx6/providers/Microsoft.ContainerRegistry/registries/cliregkunelu63d5hheg","name":"cliregkunelu63d5hheg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:47:17.661553Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:47:17.661553Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcawcbt66ltcxdj6xvspudy3mb5725ivqgf3xoq6ogescjt3izy76wtic65dtceim5/providers/Microsoft.ContainerRegistry/registries/clireggkb3ar34jr72n3","name":"clireggkb3ar34jr72n3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:27.2182538Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:27.2182538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglp5egpxt3rgqmb2sepr3rnmnxjrgdyj7qv2l23t5kiboyu36abpimlcnrq2pherns/providers/Microsoft.ContainerRegistry/registries/testregc6yrujngor7k4","name":"testregc6yrujngor7k4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:51.6108377Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:51.6108377Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxnk6j47cliygu4rmhsrof5fu2z5fxtgt26nq2m535vb3k5htyqhd6qqhrk65tpstw/providers/Microsoft.ContainerRegistry/registries/cliregxeuvezwyyu75pm","name":"cliregxeuvezwyyu75pm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:00.1864563Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:00.1864563Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyhlp6iqyz4amm6f3ldyzc4tznvhbkkb3wm7fpc7zx2nbduqjjj47xgu2qufvc2nho/providers/Microsoft.ContainerRegistry/registries/testreg2lbcba7hglwhn","name":"testreg2lbcba7hglwhn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:04.9618498Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:04.9618498Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23q5wvzjdmqcnccxbp3irvxmei6qrtsd35ucy7lpm4bnfj54hvm63koazru2o54ra/providers/Microsoft.ContainerRegistry/registries/testregayufi7frk5r7w","name":"testregayufi7frk5r7w","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:02.8710589Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:02.8710589Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '4343' + - '14897' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:45 GMT + - Thu, 30 Dec 2021 21:07:11 GMT expires: - '-1' pragma: @@ -488,22 +453,24 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.1302009Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.1104836+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:27.2182538+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:27.2182538+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:27.2182538Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:48.3035169+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1363' + - '1280' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:45 GMT + - Thu, 30 Dec 2021 21:07:12 GMT expires: - '-1' pragma: @@ -535,22 +502,24 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications?api-version=2021-08-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:22.1577307+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:22.1577307+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2021-08-18T01:27:36.6302977Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}},{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/westus","name":"westus","location":"westus","tags":{},"systemData":{"createdBy":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","createdByType":"Application","createdAt":"2021-08-18T01:27:30.6690305+00:00","lastModifiedBy":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","lastModifiedByType":"Application","lastModifiedAt":"2021-08-18T01:27:30.6690305+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2021-08-18T01:27:30.3897886Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:00.3061019+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:00.3061019+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2021-12-30T21:07:09.4511052Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}},{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/westus","name":"westus","location":"westus","tags":{},"systemData":{"createdBy":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","createdByType":"Application","createdAt":"2021-12-30T21:07:03.454929+00:00","lastModifiedBy":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","lastModifiedByType":"Application","lastModifiedAt":"2021-12-30T21:07:03.454929+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2021-12-30T21:07:03.1448301Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}]}' headers: + api-supported-versions: + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: - - '1616' + - '1480' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:46 GMT + - Thu, 30 Dec 2021 21:07:12 GMT expires: - '-1' pragma: @@ -582,21 +551,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.2 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzwgbjviw7dbzgsr3kghwbypia2zhgirs2tscvnonkpbsflcj5fmsmn7opzeron57/providers/Microsoft.ContainerRegistry/registries/cliregujii5hs3akl336","name":"cliregujii5hs3akl336","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.9354962Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.9354962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk4kxmny46372uwckxx2xkffxyt5tigvkzprnymw3g3jcfu4rw6icsu6kk2dx3flwa/providers/Microsoft.ContainerRegistry/registries/cliregohmynbvhs3ci2m","name":"cliregohmynbvhs3ci2m","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:42.8396051Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:42.8396051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-18T02:47:58.9284588Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2jrdtwxlozh33i7pmr2dg3mlx6m76m7jxmp23kzl5ndiekkjtoq3ur3ryyh4iwx6/providers/Microsoft.ContainerRegistry/registries/cliregkunelu63d5hheg","name":"cliregkunelu63d5hheg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:47:17.661553Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:47:17.661553Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcawcbt66ltcxdj6xvspudy3mb5725ivqgf3xoq6ogescjt3izy76wtic65dtceim5/providers/Microsoft.ContainerRegistry/registries/clireggkb3ar34jr72n3","name":"clireggkb3ar34jr72n3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:27.2182538Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:27.2182538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglp5egpxt3rgqmb2sepr3rnmnxjrgdyj7qv2l23t5kiboyu36abpimlcnrq2pherns/providers/Microsoft.ContainerRegistry/registries/testregc6yrujngor7k4","name":"testregc6yrujngor7k4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:51.6108377Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:51.6108377Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxnk6j47cliygu4rmhsrof5fu2z5fxtgt26nq2m535vb3k5htyqhd6qqhrk65tpstw/providers/Microsoft.ContainerRegistry/registries/cliregxeuvezwyyu75pm","name":"cliregxeuvezwyyu75pm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:00.1864563Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:00.1864563Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyhlp6iqyz4amm6f3ldyzc4tznvhbkkb3wm7fpc7zx2nbduqjjj47xgu2qufvc2nho/providers/Microsoft.ContainerRegistry/registries/testreg2lbcba7hglwhn","name":"testreg2lbcba7hglwhn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:04.9618498Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:04.9618498Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23q5wvzjdmqcnccxbp3irvxmei6qrtsd35ucy7lpm4bnfj54hvm63koazru2o54ra/providers/Microsoft.ContainerRegistry/registries/testregayufi7frk5r7w","name":"testregayufi7frk5r7w","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:02.8710589Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:02.8710589Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '4343' + - '14897' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:47 GMT + - Thu, 30 Dec 2021 21:07:13 GMT expires: - '-1' pragma: @@ -624,22 +593,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.1302009Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.1104836+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:27.2182538+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:27.2182538+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:27.2182538Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:48.3035169+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1363' + - '1280' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:47 GMT + - Thu, 30 Dec 2021 21:07:13 GMT expires: - '-1' pragma: @@ -671,22 +642,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:22.1577307+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:22.1577307+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2021-08-18T01:27:36.6302977Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:00.3061019+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:00.3061019+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2021-12-30T21:07:09.4511052Z"},"regionEndpointEnabled":true,"zoneRedundancy":"Disabled"}}' headers: + api-supported-versions: + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: - - '785' + - '718' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:48 GMT + - Thu, 30 Dec 2021 21:07:14 GMT expires: - '-1' pragma: @@ -718,21 +691,21 @@ interactions: ParameterSetName: - -n -r --tags --region-endpoint-enabled User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.2 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzwgbjviw7dbzgsr3kghwbypia2zhgirs2tscvnonkpbsflcj5fmsmn7opzeron57/providers/Microsoft.ContainerRegistry/registries/cliregujii5hs3akl336","name":"cliregujii5hs3akl336","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.9354962Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.9354962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk4kxmny46372uwckxx2xkffxyt5tigvkzprnymw3g3jcfu4rw6icsu6kk2dx3flwa/providers/Microsoft.ContainerRegistry/registries/cliregohmynbvhs3ci2m","name":"cliregohmynbvhs3ci2m","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:42.8396051Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:42.8396051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-18T02:47:58.9284588Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2jrdtwxlozh33i7pmr2dg3mlx6m76m7jxmp23kzl5ndiekkjtoq3ur3ryyh4iwx6/providers/Microsoft.ContainerRegistry/registries/cliregkunelu63d5hheg","name":"cliregkunelu63d5hheg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:47:17.661553Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:47:17.661553Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcawcbt66ltcxdj6xvspudy3mb5725ivqgf3xoq6ogescjt3izy76wtic65dtceim5/providers/Microsoft.ContainerRegistry/registries/clireggkb3ar34jr72n3","name":"clireggkb3ar34jr72n3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:27.2182538Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:27.2182538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglp5egpxt3rgqmb2sepr3rnmnxjrgdyj7qv2l23t5kiboyu36abpimlcnrq2pherns/providers/Microsoft.ContainerRegistry/registries/testregc6yrujngor7k4","name":"testregc6yrujngor7k4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:51.6108377Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:51.6108377Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxnk6j47cliygu4rmhsrof5fu2z5fxtgt26nq2m535vb3k5htyqhd6qqhrk65tpstw/providers/Microsoft.ContainerRegistry/registries/cliregxeuvezwyyu75pm","name":"cliregxeuvezwyyu75pm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:00.1864563Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:00.1864563Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyhlp6iqyz4amm6f3ldyzc4tznvhbkkb3wm7fpc7zx2nbduqjjj47xgu2qufvc2nho/providers/Microsoft.ContainerRegistry/registries/testreg2lbcba7hglwhn","name":"testreg2lbcba7hglwhn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:04.9618498Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:04.9618498Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23q5wvzjdmqcnccxbp3irvxmei6qrtsd35ucy7lpm4bnfj54hvm63koazru2o54ra/providers/Microsoft.ContainerRegistry/registries/testregayufi7frk5r7w","name":"testregayufi7frk5r7w","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:02.8710589Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:02.8710589Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '4343' + - '14897' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:49 GMT + - Thu, 30 Dec 2021 21:07:14 GMT expires: - '-1' pragma: @@ -764,24 +737,26 @@ interactions: ParameterSetName: - -n -r --tags --region-endpoint-enabled User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{"key":"value"},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:22.1577307+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:50.3341834+00:00"},"properties":{"provisioningState":"Updating","status":{"displayStatus":"Ready","timestamp":"2021-08-18T01:27:36.6302977Z"},"regionEndpointEnabled":false,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{"key":"value"},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:00.3061019+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:14.955054+00:00"},"properties":{"provisioningState":"Updating","status":{"displayStatus":"Ready","timestamp":"2021-12-30T21:07:09.4511052Z"},"regionEndpointEnabled":false,"zoneRedundancy":"Disabled"}}' headers: + api-supported-versions: + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-7f6da0b2-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-7d8c4590-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: - - '798' + - '730' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:50 GMT + - Thu, 30 Dec 2021 21:07:14 GMT expires: - '-1' pragma: @@ -793,7 +768,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -811,16 +786,18 @@ interactions: ParameterSetName: - -n -r --tags --region-endpoint-enabled User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-7f6da0b2-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-7d8c4590-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview response: body: string: '{"status":"Succeeded"}' headers: + api-supported-versions: + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-7f6da0b2-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-7d8c4590-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: @@ -828,7 +805,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:28:00 GMT + - Thu, 30 Dec 2021 21:07:25 GMT expires: - '-1' pragma: @@ -860,22 +837,24 @@ interactions: ParameterSetName: - -n -r --tags --region-endpoint-enabled User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{"key":"value"},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:22.1577307+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:50.3341834+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2021-08-18T01:27:50.5614705Z"},"regionEndpointEnabled":false,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{"key":"value"},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:00.3061019+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:14.955054+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2021-12-30T21:07:15.7607868Z"},"regionEndpointEnabled":false,"zoneRedundancy":"Disabled"}}' headers: + api-supported-versions: + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: - - '799' + - '731' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:28:00 GMT + - Thu, 30 Dec 2021 21:07:25 GMT expires: - '-1' pragma: @@ -907,21 +886,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.2 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzwgbjviw7dbzgsr3kghwbypia2zhgirs2tscvnonkpbsflcj5fmsmn7opzeron57/providers/Microsoft.ContainerRegistry/registries/cliregujii5hs3akl336","name":"cliregujii5hs3akl336","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.9354962Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.9354962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgk4kxmny46372uwckxx2xkffxyt5tigvkzprnymw3g3jcfu4rw6icsu6kk2dx3flwa/providers/Microsoft.ContainerRegistry/registries/cliregohmynbvhs3ci2m","name":"cliregohmynbvhs3ci2m","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:42.8396051Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:42.8396051Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwry7tgbsue5cjh6cj4auh6nmkwpekweluashdri3gydeajjr3d5zqf2ft35nudfac/providers/Microsoft.ContainerRegistry/registries/testregltnnuqbxmccor","name":"testregltnnuqbxmccor","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:55.8773016Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:55.8773016Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgln3b2anuykgrzxp52o5o6znq635yi2t4rhpxdg5u63grlkpvj3j4cnyzdj5n3h4ci/providers/Microsoft.ContainerRegistry/registries/testregxvuzaimu6qijo","name":"testregxvuzaimu6qijo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:55.9467729Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:55.9467729Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-18T02:47:58.9284588Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2jrdtwxlozh33i7pmr2dg3mlx6m76m7jxmp23kzl5ndiekkjtoq3ur3ryyh4iwx6/providers/Microsoft.ContainerRegistry/registries/cliregkunelu63d5hheg","name":"cliregkunelu63d5hheg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:47:17.661553Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:47:17.661553Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcawcbt66ltcxdj6xvspudy3mb5725ivqgf3xoq6ogescjt3izy76wtic65dtceim5/providers/Microsoft.ContainerRegistry/registries/clireggkb3ar34jr72n3","name":"clireggkb3ar34jr72n3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:27.2182538Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:27.2182538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglp5egpxt3rgqmb2sepr3rnmnxjrgdyj7qv2l23t5kiboyu36abpimlcnrq2pherns/providers/Microsoft.ContainerRegistry/registries/testregc6yrujngor7k4","name":"testregc6yrujngor7k4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:51.6108377Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:51.6108377Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxnk6j47cliygu4rmhsrof5fu2z5fxtgt26nq2m535vb3k5htyqhd6qqhrk65tpstw/providers/Microsoft.ContainerRegistry/registries/cliregxeuvezwyyu75pm","name":"cliregxeuvezwyyu75pm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:00.1864563Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:00.1864563Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyhlp6iqyz4amm6f3ldyzc4tznvhbkkb3wm7fpc7zx2nbduqjjj47xgu2qufvc2nho/providers/Microsoft.ContainerRegistry/registries/testreg2lbcba7hglwhn","name":"testreg2lbcba7hglwhn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgyhlp6iqyz4amm6f3ldyzc4tznvhbkkb3wm7fpc7zx2nbduqjjj47xgu2qufvc2nho/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityqmboiorn":{"principalId":"6ea13f97-54cd-4184-9509-9559135b1ba4","clientId":"eee330ff-1b7d-4d70-ac4c-e3f24f9a3015"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:04.9618498Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:20.5871676Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23q5wvzjdmqcnccxbp3irvxmei6qrtsd35ucy7lpm4bnfj54hvm63koazru2o54ra/providers/Microsoft.ContainerRegistry/registries/testregayufi7frk5r7w","name":"testregayufi7frk5r7w","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:02.8710589Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:02.8710589Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '5559' + - '15884' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:28:01 GMT + - Thu, 30 Dec 2021 21:07:26 GMT expires: - '-1' pragma: @@ -949,22 +928,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.1302009Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.1104836+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:27.2182538+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:27.2182538+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:27.2182538Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:48.3035169+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1363' + - '1280' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:28:02 GMT + - Thu, 30 Dec 2021 21:07:25 GMT expires: - '-1' pragma: @@ -998,14 +979,16 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-08-01-preview response: body: string: 'null' headers: + api-supported-versions: + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: @@ -1013,11 +996,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:28:04 GMT + - Thu, 30 Dec 2021 21:07:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-86e1c2f6-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-8457b4cc-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview pragma: - no-cache server: @@ -1027,7 +1010,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -1045,10 +1028,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-86e1c2f6-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-8457b4cc-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview response: body: string: '' @@ -1058,7 +1041,7 @@ interactions: content-length: - '0' date: - - Wed, 18 Aug 2021 01:28:14 GMT + - Thu, 30 Dec 2021 21:07:37 GMT expires: - '-1' pragma: @@ -1086,21 +1069,21 @@ interactions: ParameterSetName: - -n -r -l --region-endpoint-enabled User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.2 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzwgbjviw7dbzgsr3kghwbypia2zhgirs2tscvnonkpbsflcj5fmsmn7opzeron57/providers/Microsoft.ContainerRegistry/registries/cliregujii5hs3akl336","name":"cliregujii5hs3akl336","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.9354962Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.9354962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwry7tgbsue5cjh6cj4auh6nmkwpekweluashdri3gydeajjr3d5zqf2ft35nudfac/providers/Microsoft.ContainerRegistry/registries/testregltnnuqbxmccor","name":"testregltnnuqbxmccor","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgwry7tgbsue5cjh6cj4auh6nmkwpekweluashdri3gydeajjr3d5zqf2ft35nudfac/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityvbefemd3":{"principalId":"1851cb75-2fe1-4b86-b5c6-067dc3490873","clientId":"87ecce5d-8602-4263-af05-172b91cfbbf2"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:55.8773016Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:55.8773016Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgln3b2anuykgrzxp52o5o6znq635yi2t4rhpxdg5u63grlkpvj3j4cnyzdj5n3h4ci/providers/Microsoft.ContainerRegistry/registries/testregxvuzaimu6qijo","name":"testregxvuzaimu6qijo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:55.9467729Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:55.9467729Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgehnvpq5zfweiremzjcbkolgvqrnps2wuj6c6kehwfek22t7ya3qsbrridzwizjmk5/providers/Microsoft.ContainerRegistry/registries/testreg3tuc3db5xdocs","name":"testreg3tuc3db5xdocs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.0806264Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.0806264Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-18T02:47:58.9284588Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2jrdtwxlozh33i7pmr2dg3mlx6m76m7jxmp23kzl5ndiekkjtoq3ur3ryyh4iwx6/providers/Microsoft.ContainerRegistry/registries/cliregkunelu63d5hheg","name":"cliregkunelu63d5hheg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:47:17.661553Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:47:17.661553Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcawcbt66ltcxdj6xvspudy3mb5725ivqgf3xoq6ogescjt3izy76wtic65dtceim5/providers/Microsoft.ContainerRegistry/registries/clireggkb3ar34jr72n3","name":"clireggkb3ar34jr72n3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:27.2182538Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:27.2182538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglp5egpxt3rgqmb2sepr3rnmnxjrgdyj7qv2l23t5kiboyu36abpimlcnrq2pherns/providers/Microsoft.ContainerRegistry/registries/testregc6yrujngor7k4","name":"testregc6yrujngor7k4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:51.6108377Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:51.6108377Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxnk6j47cliygu4rmhsrof5fu2z5fxtgt26nq2m535vb3k5htyqhd6qqhrk65tpstw/providers/Microsoft.ContainerRegistry/registries/cliregxeuvezwyyu75pm","name":"cliregxeuvezwyyu75pm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:00.1864563Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:00.1864563Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyhlp6iqyz4amm6f3ldyzc4tznvhbkkb3wm7fpc7zx2nbduqjjj47xgu2qufvc2nho/providers/Microsoft.ContainerRegistry/registries/testreg2lbcba7hglwhn","name":"testreg2lbcba7hglwhn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgyhlp6iqyz4amm6f3ldyzc4tznvhbkkb3wm7fpc7zx2nbduqjjj47xgu2qufvc2nho/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityqmboiorn":{"principalId":"6ea13f97-54cd-4184-9509-9559135b1ba4","clientId":"eee330ff-1b7d-4d70-ac4c-e3f24f9a3015"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:04.9618498Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:20.5871676Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrsardaowphquipt2dycwq463gxczrnytbrkwhuxy6eypstecqm3hewyk3awfzp7ry/providers/Microsoft.ContainerRegistry/registries/testreg2hcb3i4f6tosw","name":"testreg2hcb3i4f6tosw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:34.2332858Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:34.2332858Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23q5wvzjdmqcnccxbp3irvxmei6qrtsd35ucy7lpm4bnfj54hvm63koazru2o54ra/providers/Microsoft.ContainerRegistry/registries/testregayufi7frk5r7w","name":"testregayufi7frk5r7w","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:02.8710589Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:02.8710589Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '6551' + - '16492' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:28:16 GMT + - Thu, 30 Dec 2021 21:07:37 GMT expires: - '-1' pragma: @@ -1128,22 +1111,24 @@ interactions: ParameterSetName: - -n -r -l --region-endpoint-enabled User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.1302009Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.1104836+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:27.2182538+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:27.2182538+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:27.2182538Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:48.3035169+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1363' + - '1280' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:28:16 GMT + - Thu, 30 Dec 2021 21:07:37 GMT expires: - '-1' pragma: @@ -1179,24 +1164,26 @@ interactions: ParameterSetName: - -n -r -l --region-endpoint-enabled User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:17.3889778+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:17.3889778+00:00"},"properties":{"provisioningState":"Creating","status":{"timestamp":"2021-08-18T01:28:18.4490545Z"},"regionEndpointEnabled":false,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:00.3061019+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:38.4448526+00:00"},"properties":{"provisioningState":"Creating","status":{"timestamp":"2021-12-30T21:07:39.1610594Z"},"regionEndpointEnabled":false,"zoneRedundancy":"Disabled"}}' headers: + api-supported-versions: + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-8f22c140-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-8b5710ba-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: - - '761' + - '694' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:28:18 GMT + - Thu, 30 Dec 2021 21:07:39 GMT expires: - '-1' pragma: @@ -1226,16 +1213,18 @@ interactions: ParameterSetName: - -n -r -l --region-endpoint-enabled User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-8f22c140-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-8b5710ba-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview response: body: string: '{"status":"Succeeded"}' headers: + api-supported-versions: + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-8f22c140-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus/operationStatuses/replications-8b5710ba-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: @@ -1243,7 +1232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:28:28 GMT + - Thu, 30 Dec 2021 21:07:49 GMT expires: - '-1' pragma: @@ -1275,22 +1264,24 @@ interactions: ParameterSetName: - -n -r -l --region-endpoint-enabled User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:17.3889778+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:17.3889778+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2021-08-18T01:28:23.4595795Z"},"regionEndpointEnabled":false,"zoneRedundancy":"Disabled"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/replications","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus","name":"centralus","location":"centralus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:00.3061019+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:38.4448526+00:00"},"properties":{"provisioningState":"Succeeded","status":{"displayStatus":"Ready","timestamp":"2021-12-30T21:07:43.7310261Z"},"regionEndpointEnabled":false,"zoneRedundancy":"Disabled"}}' headers: + api-supported-versions: + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: - - '786' + - '719' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:28:28 GMT + - Thu, 30 Dec 2021 21:07:49 GMT expires: - '-1' pragma: @@ -1322,21 +1313,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.2 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzwgbjviw7dbzgsr3kghwbypia2zhgirs2tscvnonkpbsflcj5fmsmn7opzeron57/providers/Microsoft.ContainerRegistry/registries/cliregujii5hs3akl336","name":"cliregujii5hs3akl336","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.9354962Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.9354962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwry7tgbsue5cjh6cj4auh6nmkwpekweluashdri3gydeajjr3d5zqf2ft35nudfac/providers/Microsoft.ContainerRegistry/registries/testregltnnuqbxmccor","name":"testregltnnuqbxmccor","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgwry7tgbsue5cjh6cj4auh6nmkwpekweluashdri3gydeajjr3d5zqf2ft35nudfac/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityvbefemd3":{"principalId":"1851cb75-2fe1-4b86-b5c6-067dc3490873","clientId":"87ecce5d-8602-4263-af05-172b91cfbbf2"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:55.8773016Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:14.213992Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgln3b2anuykgrzxp52o5o6znq635yi2t4rhpxdg5u63grlkpvj3j4cnyzdj5n3h4ci/providers/Microsoft.ContainerRegistry/registries/testregxvuzaimu6qijo","name":"testregxvuzaimu6qijo","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:55.9467729Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:55.9467729Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgehnvpq5zfweiremzjcbkolgvqrnps2wuj6c6kehwfek22t7ya3qsbrridzwizjmk5/providers/Microsoft.ContainerRegistry/registries/testreg3tuc3db5xdocs","name":"testreg3tuc3db5xdocs","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.0806264Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.0806264Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-18T02:47:58.9284588Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2jrdtwxlozh33i7pmr2dg3mlx6m76m7jxmp23kzl5ndiekkjtoq3ur3ryyh4iwx6/providers/Microsoft.ContainerRegistry/registries/cliregkunelu63d5hheg","name":"cliregkunelu63d5hheg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:47:17.661553Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:47:17.661553Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcawcbt66ltcxdj6xvspudy3mb5725ivqgf3xoq6ogescjt3izy76wtic65dtceim5/providers/Microsoft.ContainerRegistry/registries/clireggkb3ar34jr72n3","name":"clireggkb3ar34jr72n3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:27.2182538Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:27.2182538Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rglp5egpxt3rgqmb2sepr3rnmnxjrgdyj7qv2l23t5kiboyu36abpimlcnrq2pherns/providers/Microsoft.ContainerRegistry/registries/testregc6yrujngor7k4","name":"testregc6yrujngor7k4","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:51.6108377Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:51.6108377Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxnk6j47cliygu4rmhsrof5fu2z5fxtgt26nq2m535vb3k5htyqhd6qqhrk65tpstw/providers/Microsoft.ContainerRegistry/registries/cliregxeuvezwyyu75pm","name":"cliregxeuvezwyyu75pm","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:00.1864563Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:00.1864563Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgyhlp6iqyz4amm6f3ldyzc4tznvhbkkb3wm7fpc7zx2nbduqjjj47xgu2qufvc2nho/providers/Microsoft.ContainerRegistry/registries/testreg2lbcba7hglwhn","name":"testreg2lbcba7hglwhn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rgyhlp6iqyz4amm6f3ldyzc4tznvhbkkb3wm7fpc7zx2nbduqjjj47xgu2qufvc2nho/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentityqmboiorn":{"principalId":"6ea13f97-54cd-4184-9509-9559135b1ba4","clientId":"eee330ff-1b7d-4d70-ac4c-e3f24f9a3015"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:04.9618498Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:20.5871676Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4sqtlrmhehntavgc4qu","name":"sourceregistrysamesub4sqtlrmhehntavgc4qu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:19.2582766Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:19.2582766Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgwuxisqcvpwkkki5oskstrpzaelpvkgjsr2moywddvb5j6y7gbkqc3bnglva437r2n/providers/Microsoft.ContainerRegistry/registries/cliregkdfinz67gqxuav","name":"cliregkdfinz67gqxuav","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:39.2144833Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:39.2144833Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rguhslifriepow5wu4jddpswxodcc2jscd2rrn5o2j4ltshf2h6q3s3hx5lx6p7wtuo/providers/Microsoft.ContainerRegistry/registries/testregvk6tba664jiwr","name":"testregvk6tba664jiwr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:41.8888087Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:41.8888087Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgrsardaowphquipt2dycwq463gxczrnytbrkwhuxy6eypstecqm3hewyk3awfzp7ry/providers/Microsoft.ContainerRegistry/registries/testreg2hcb3i4f6tosw","name":"testreg2hcb3i4f6tosw","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:34.2332858Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:34.2332858Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg23q5wvzjdmqcnccxbp3irvxmei6qrtsd35ucy7lpm4bnfj54hvm63koazru2o54ra/providers/Microsoft.ContainerRegistry/registries/testregayufi7frk5r7w","name":"testregayufi7frk5r7w","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:07:02.8710589Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:07:02.8710589Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '6550' + - '17708' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:28:30 GMT + - Thu, 30 Dec 2021 21:07:49 GMT expires: - '-1' pragma: @@ -1364,22 +1355,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.1302009Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.1104836+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:27.2182538+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:27.2182538+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:27.2182538Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:48.3035169+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1363' + - '1280' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:28:30 GMT + - Thu, 30 Dec 2021 21:07:50 GMT expires: - '-1' pragma: @@ -1413,14 +1406,16 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/replications/centralus?api-version=2021-08-01-preview response: body: string: 'null' headers: + api-supported-versions: + - 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: @@ -1428,11 +1423,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:28:31 GMT + - Thu, 30 Dec 2021 21:07:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-978cd3f2-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-92b97078-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview pragma: - no-cache server: @@ -1460,10 +1455,10 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-978cd3f2-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centralus/operationResults/replications-92b97078-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview response: body: string: '' @@ -1473,7 +1468,7 @@ interactions: content-length: - '0' date: - - Wed, 18 Aug 2021 01:28:41 GMT + - Thu, 30 Dec 2021 21:08:02 GMT expires: - '-1' pragma: @@ -1503,26 +1498,28 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.1302009Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.1104836+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Premium","tier":"Premium"},"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":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:27.2182538+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:27.2182538+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:27.2182538Z","provisioningState":"Deleting","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:48.3035169+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1362' + - '1279' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:28:54 GMT + - Thu, 30 Dec 2021 21:08:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-9f8162c6-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-9a8dead6-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview pragma: - no-cache server: @@ -1550,10 +1547,10 @@ interactions: ParameterSetName: - -n -g -y User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-9f8162c6-ffc3-11eb-acb4-00155d392c20?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/westus/operationResults/registries-9a8dead6-69b4-11ec-a24c-00155d249691?api-version=2021-08-01-preview response: body: string: '' @@ -1563,7 +1560,7 @@ interactions: content-length: - '0' date: - - Wed, 18 Aug 2021 01:29:04 GMT + - Thu, 30 Dec 2021 21:08:15 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_webhook.yaml b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_webhook.yaml index ffb078e36a0..abf2b3cc728 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_webhook.yaml +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/recordings/test_acr_create_webhook.yaml @@ -18,24 +18,26 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.3821955+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.3821955+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.3821955Z","provisioningState":"Creating","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.8834659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.6193685+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.6193685+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:22.6193685Z","provisioningState":"Creating","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:23.6538629+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-63dc34bc-ffc3-11eb-8084-00155d392c20?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-5d55ba36-69b4-11ec-b7f8-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: - - '1283' + - '1200' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:08 GMT + - Thu, 30 Dec 2021 21:06:24 GMT expires: - '-1' pragma: @@ -65,16 +67,18 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-63dc34bc-ffc3-11eb-8084-00155d392c20?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-5d55ba36-69b4-11ec-b7f8-00155d249691?api-version=2021-08-01-preview response: body: string: '{"status":"Succeeded"}' headers: + api-supported-versions: + - 2021-08-01-preview azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-63dc34bc-ffc3-11eb-8084-00155d392c20?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/operationStatuses/registries-5d55ba36-69b4-11ec-b7f8-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: @@ -82,7 +86,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:18 GMT + - Thu, 30 Dec 2021 21:06:34 GMT expires: - '-1' pragma: @@ -114,22 +118,24 @@ interactions: ParameterSetName: - -n -g -l --sku User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.3821955+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.3821955+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.3821955Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.8834659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.6193685+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.6193685+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:22.6193685Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:23.6538629+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1284' + - '1201' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:18 GMT + - Thu, 30 Dec 2021 21:06:34 GMT expires: - '-1' pragma: @@ -161,21 +167,21 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.2 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgny4abhjp3sd2yg7ugezzcm6ilgqgdiwxi6hcruh6jfdlhyujspsa5ve5eh4yi7ykf/providers/Microsoft.ContainerRegistry/registries/cliregmo6pgvda2nj4i7","name":"cliregmo6pgvda2nj4i7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.3821955Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.3821955Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzwgbjviw7dbzgsr3kghwbypia2zhgirs2tscvnonkpbsflcj5fmsmn7opzeron57/providers/Microsoft.ContainerRegistry/registries/cliregujii5hs3akl336","name":"cliregujii5hs3akl336","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.9354962Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.9354962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo4s4myuxonjwppqkdhungd22lv5t3rqcc45cmk6tyancc3pkba7fjye4uftv6wqzk/providers/Microsoft.ContainerRegistry/registries/cliregl65ebkle6edykr","name":"cliregl65ebkle6edykr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:06.9454863Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:06.9454863Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-18T02:47:58.9284588Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx5ai4qdiirwoxchbbot6nomrp2mbbgss7el6d5mtyycbft6j5c6njz37pgt6otzis/providers/Microsoft.ContainerRegistry/registries/cliregl42ot2htbniuuu","name":"cliregl42ot2htbniuuu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:35:35.6450638Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:35:35.6450638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2jrdtwxlozh33i7pmr2dg3mlx6m76m7jxmp23kzl5ndiekkjtoq3ur3ryyh4iwx6/providers/Microsoft.ContainerRegistry/registries/cliregkunelu63d5hheg","name":"cliregkunelu63d5hheg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:47:17.661553Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:47:17.661553Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcawcbt66ltcxdj6xvspudy3mb5725ivqgf3xoq6ogescjt3izy76wtic65dtceim5/providers/Microsoft.ContainerRegistry/registries/clireggkb3ar34jr72n3","name":"clireggkb3ar34jr72n3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.6193685Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.6193685Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoqpwjjlu3fzozq3kzkjifoxvlfh6hstslnndia7d2acwql6zdjpmaykgdfnauyxok/providers/Microsoft.ContainerRegistry/registries/cliregoy33bdvmssh3us","name":"cliregoy33bdvmssh3us","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:24.5479778Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:24.5479778Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '4957' + - '13686' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:19 GMT + - Thu, 30 Dec 2021 21:06:34 GMT expires: - '-1' pragma: @@ -203,22 +209,24 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.3821955+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.3821955+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.3821955Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.8834659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.6193685+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.6193685+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:22.6193685Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:23.6538629+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1284' + - '1201' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:20 GMT + - Thu, 30 Dec 2021 21:06:35 GMT expires: - '-1' pragma: @@ -255,22 +263,25 @@ interactions: ParameterSetName: - -n -r --uri --actions User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:21.2099793+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:21.2099793+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:35.7416788+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:35.7416788+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: - - '696' + - '629' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:20 GMT + - Thu, 30 Dec 2021 21:06:34 GMT expires: - '-1' pragma: @@ -286,7 +297,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 200 message: OK @@ -304,21 +315,21 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.2 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgny4abhjp3sd2yg7ugezzcm6ilgqgdiwxi6hcruh6jfdlhyujspsa5ve5eh4yi7ykf/providers/Microsoft.ContainerRegistry/registries/cliregmo6pgvda2nj4i7","name":"cliregmo6pgvda2nj4i7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.3821955Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.3821955Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzwgbjviw7dbzgsr3kghwbypia2zhgirs2tscvnonkpbsflcj5fmsmn7opzeron57/providers/Microsoft.ContainerRegistry/registries/cliregujii5hs3akl336","name":"cliregujii5hs3akl336","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.9354962Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.9354962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo4s4myuxonjwppqkdhungd22lv5t3rqcc45cmk6tyancc3pkba7fjye4uftv6wqzk/providers/Microsoft.ContainerRegistry/registries/cliregl65ebkle6edykr","name":"cliregl65ebkle6edykr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:06.9454863Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:06.9454863Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-18T02:47:58.9284588Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx5ai4qdiirwoxchbbot6nomrp2mbbgss7el6d5mtyycbft6j5c6njz37pgt6otzis/providers/Microsoft.ContainerRegistry/registries/cliregl42ot2htbniuuu","name":"cliregl42ot2htbniuuu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:35:35.6450638Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:35:35.6450638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2jrdtwxlozh33i7pmr2dg3mlx6m76m7jxmp23kzl5ndiekkjtoq3ur3ryyh4iwx6/providers/Microsoft.ContainerRegistry/registries/cliregkunelu63d5hheg","name":"cliregkunelu63d5hheg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:47:17.661553Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:47:17.661553Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcawcbt66ltcxdj6xvspudy3mb5725ivqgf3xoq6ogescjt3izy76wtic65dtceim5/providers/Microsoft.ContainerRegistry/registries/clireggkb3ar34jr72n3","name":"clireggkb3ar34jr72n3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.6193685Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.6193685Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoqpwjjlu3fzozq3kzkjifoxvlfh6hstslnndia7d2acwql6zdjpmaykgdfnauyxok/providers/Microsoft.ContainerRegistry/registries/cliregoy33bdvmssh3us","name":"cliregoy33bdvmssh3us","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:24.5479778Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:24.5479778Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '4957' + - '13686' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:22 GMT + - Thu, 30 Dec 2021 21:06:35 GMT expires: - '-1' pragma: @@ -346,22 +357,24 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.3821955+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.3821955+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.3821955Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.8834659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.6193685+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.6193685+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:22.6193685Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:23.6538629+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1284' + - '1201' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:23 GMT + - Thu, 30 Dec 2021 21:06:35 GMT expires: - '-1' pragma: @@ -393,22 +406,25 @@ interactions: ParameterSetName: - -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks?api-version=2021-08-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:21.2099793+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:21.2099793+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:35.7416788+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:35.7416788+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}]}' headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: - - '708' + - '641' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:23 GMT + - Thu, 30 Dec 2021 21:06:36 GMT expires: - '-1' pragma: @@ -440,21 +456,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.2 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgny4abhjp3sd2yg7ugezzcm6ilgqgdiwxi6hcruh6jfdlhyujspsa5ve5eh4yi7ykf/providers/Microsoft.ContainerRegistry/registries/cliregmo6pgvda2nj4i7","name":"cliregmo6pgvda2nj4i7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.3821955Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.3821955Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzwgbjviw7dbzgsr3kghwbypia2zhgirs2tscvnonkpbsflcj5fmsmn7opzeron57/providers/Microsoft.ContainerRegistry/registries/cliregujii5hs3akl336","name":"cliregujii5hs3akl336","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.9354962Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.9354962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo4s4myuxonjwppqkdhungd22lv5t3rqcc45cmk6tyancc3pkba7fjye4uftv6wqzk/providers/Microsoft.ContainerRegistry/registries/cliregl65ebkle6edykr","name":"cliregl65ebkle6edykr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:06.9454863Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:06.9454863Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-18T02:47:58.9284588Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx5ai4qdiirwoxchbbot6nomrp2mbbgss7el6d5mtyycbft6j5c6njz37pgt6otzis/providers/Microsoft.ContainerRegistry/registries/cliregl42ot2htbniuuu","name":"cliregl42ot2htbniuuu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:35:35.6450638Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:35:35.6450638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2jrdtwxlozh33i7pmr2dg3mlx6m76m7jxmp23kzl5ndiekkjtoq3ur3ryyh4iwx6/providers/Microsoft.ContainerRegistry/registries/cliregkunelu63d5hheg","name":"cliregkunelu63d5hheg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:47:17.661553Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:47:17.661553Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcawcbt66ltcxdj6xvspudy3mb5725ivqgf3xoq6ogescjt3izy76wtic65dtceim5/providers/Microsoft.ContainerRegistry/registries/clireggkb3ar34jr72n3","name":"clireggkb3ar34jr72n3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.6193685Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.6193685Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoqpwjjlu3fzozq3kzkjifoxvlfh6hstslnndia7d2acwql6zdjpmaykgdfnauyxok/providers/Microsoft.ContainerRegistry/registries/cliregoy33bdvmssh3us","name":"cliregoy33bdvmssh3us","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:24.5479778Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:24.5479778Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '4957' + - '13686' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:24 GMT + - Thu, 30 Dec 2021 21:06:36 GMT expires: - '-1' pragma: @@ -482,22 +498,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.3821955+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.3821955+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.3821955Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.8834659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.6193685+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.6193685+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:22.6193685Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:23.6538629+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1284' + - '1201' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:24 GMT + - Thu, 30 Dec 2021 21:06:36 GMT expires: - '-1' pragma: @@ -529,22 +547,25 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:21.2099793+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:21.2099793+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:35.7416788+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:35.7416788+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: - - '696' + - '629' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:25 GMT + - Thu, 30 Dec 2021 21:06:36 GMT expires: - '-1' pragma: @@ -576,21 +597,21 @@ interactions: ParameterSetName: - -n -r --headers --scope User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.2 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgny4abhjp3sd2yg7ugezzcm6ilgqgdiwxi6hcruh6jfdlhyujspsa5ve5eh4yi7ykf/providers/Microsoft.ContainerRegistry/registries/cliregmo6pgvda2nj4i7","name":"cliregmo6pgvda2nj4i7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.3821955Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.3821955Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzwgbjviw7dbzgsr3kghwbypia2zhgirs2tscvnonkpbsflcj5fmsmn7opzeron57/providers/Microsoft.ContainerRegistry/registries/cliregujii5hs3akl336","name":"cliregujii5hs3akl336","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.9354962Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.9354962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo4s4myuxonjwppqkdhungd22lv5t3rqcc45cmk6tyancc3pkba7fjye4uftv6wqzk/providers/Microsoft.ContainerRegistry/registries/cliregl65ebkle6edykr","name":"cliregl65ebkle6edykr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:06.9454863Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:06.9454863Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-18T02:47:58.9284588Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx5ai4qdiirwoxchbbot6nomrp2mbbgss7el6d5mtyycbft6j5c6njz37pgt6otzis/providers/Microsoft.ContainerRegistry/registries/cliregl42ot2htbniuuu","name":"cliregl42ot2htbniuuu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:35:35.6450638Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:35:35.6450638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2jrdtwxlozh33i7pmr2dg3mlx6m76m7jxmp23kzl5ndiekkjtoq3ur3ryyh4iwx6/providers/Microsoft.ContainerRegistry/registries/cliregkunelu63d5hheg","name":"cliregkunelu63d5hheg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:47:17.661553Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:47:17.661553Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcawcbt66ltcxdj6xvspudy3mb5725ivqgf3xoq6ogescjt3izy76wtic65dtceim5/providers/Microsoft.ContainerRegistry/registries/clireggkb3ar34jr72n3","name":"clireggkb3ar34jr72n3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.6193685Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.6193685Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoqpwjjlu3fzozq3kzkjifoxvlfh6hstslnndia7d2acwql6zdjpmaykgdfnauyxok/providers/Microsoft.ContainerRegistry/registries/cliregoy33bdvmssh3us","name":"cliregoy33bdvmssh3us","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:24.5479778Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:24.5479778Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '4957' + - '13686' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:26 GMT + - Thu, 30 Dec 2021 21:06:36 GMT expires: - '-1' pragma: @@ -622,22 +643,25 @@ interactions: ParameterSetName: - -n -r --headers --scope User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook?api-version=2021-08-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:21.2099793+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:27.4827937+00:00"},"properties":{"status":"enabled","scope":"hello-world","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:35.7416788+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:37.8849928+00:00"},"properties":{"status":"enabled","scope":"hello-world","actions":["push"],"provisioningState":"Succeeded"}}' headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: - - '707' + - '640' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:26 GMT + - Thu, 30 Dec 2021 21:06:37 GMT expires: - '-1' pragma: @@ -653,7 +677,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -671,21 +695,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.2 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgny4abhjp3sd2yg7ugezzcm6ilgqgdiwxi6hcruh6jfdlhyujspsa5ve5eh4yi7ykf/providers/Microsoft.ContainerRegistry/registries/cliregmo6pgvda2nj4i7","name":"cliregmo6pgvda2nj4i7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.3821955Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.3821955Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzwgbjviw7dbzgsr3kghwbypia2zhgirs2tscvnonkpbsflcj5fmsmn7opzeron57/providers/Microsoft.ContainerRegistry/registries/cliregujii5hs3akl336","name":"cliregujii5hs3akl336","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.9354962Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.9354962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo4s4myuxonjwppqkdhungd22lv5t3rqcc45cmk6tyancc3pkba7fjye4uftv6wqzk/providers/Microsoft.ContainerRegistry/registries/cliregl65ebkle6edykr","name":"cliregl65ebkle6edykr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:06.9454863Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:06.9454863Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-18T02:47:58.9284588Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx5ai4qdiirwoxchbbot6nomrp2mbbgss7el6d5mtyycbft6j5c6njz37pgt6otzis/providers/Microsoft.ContainerRegistry/registries/cliregl42ot2htbniuuu","name":"cliregl42ot2htbniuuu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:35:35.6450638Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:35:35.6450638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2jrdtwxlozh33i7pmr2dg3mlx6m76m7jxmp23kzl5ndiekkjtoq3ur3ryyh4iwx6/providers/Microsoft.ContainerRegistry/registries/cliregkunelu63d5hheg","name":"cliregkunelu63d5hheg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:47:17.661553Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:47:17.661553Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcawcbt66ltcxdj6xvspudy3mb5725ivqgf3xoq6ogescjt3izy76wtic65dtceim5/providers/Microsoft.ContainerRegistry/registries/clireggkb3ar34jr72n3","name":"clireggkb3ar34jr72n3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.6193685Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.6193685Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoqpwjjlu3fzozq3kzkjifoxvlfh6hstslnndia7d2acwql6zdjpmaykgdfnauyxok/providers/Microsoft.ContainerRegistry/registries/cliregoy33bdvmssh3us","name":"cliregoy33bdvmssh3us","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:24.5479778Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:24.5479778Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '4957' + - '13686' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:28 GMT + - Thu, 30 Dec 2021 21:06:37 GMT expires: - '-1' pragma: @@ -713,22 +737,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.3821955+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.3821955+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.3821955Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.8834659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.6193685+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.6193685+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:22.6193685Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:23.6538629+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1284' + - '1201' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:28 GMT + - Thu, 30 Dec 2021 21:06:38 GMT expires: - '-1' pragma: @@ -762,14 +788,17 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook/getCallbackConfig?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook/getCallbackConfig?api-version=2021-08-01-preview response: body: string: '{"serviceUri":"http://www.microsoft.com","customHeaders":{"key":"value"}}' headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: @@ -777,7 +806,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:28 GMT + - Thu, 30 Dec 2021 21:06:38 GMT expires: - '-1' pragma: @@ -811,21 +840,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.2 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgny4abhjp3sd2yg7ugezzcm6ilgqgdiwxi6hcruh6jfdlhyujspsa5ve5eh4yi7ykf/providers/Microsoft.ContainerRegistry/registries/cliregmo6pgvda2nj4i7","name":"cliregmo6pgvda2nj4i7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.3821955Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.3821955Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzwgbjviw7dbzgsr3kghwbypia2zhgirs2tscvnonkpbsflcj5fmsmn7opzeron57/providers/Microsoft.ContainerRegistry/registries/cliregujii5hs3akl336","name":"cliregujii5hs3akl336","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.9354962Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.9354962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo4s4myuxonjwppqkdhungd22lv5t3rqcc45cmk6tyancc3pkba7fjye4uftv6wqzk/providers/Microsoft.ContainerRegistry/registries/cliregl65ebkle6edykr","name":"cliregl65ebkle6edykr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:06.9454863Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:28.6867738Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-18T02:47:58.9284588Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx5ai4qdiirwoxchbbot6nomrp2mbbgss7el6d5mtyycbft6j5c6njz37pgt6otzis/providers/Microsoft.ContainerRegistry/registries/cliregl42ot2htbniuuu","name":"cliregl42ot2htbniuuu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:35:35.6450638Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:35:35.6450638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2jrdtwxlozh33i7pmr2dg3mlx6m76m7jxmp23kzl5ndiekkjtoq3ur3ryyh4iwx6/providers/Microsoft.ContainerRegistry/registries/cliregkunelu63d5hheg","name":"cliregkunelu63d5hheg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:47:17.661553Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:47:17.661553Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcawcbt66ltcxdj6xvspudy3mb5725ivqgf3xoq6ogescjt3izy76wtic65dtceim5/providers/Microsoft.ContainerRegistry/registries/clireggkb3ar34jr72n3","name":"clireggkb3ar34jr72n3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.6193685Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.6193685Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoqpwjjlu3fzozq3kzkjifoxvlfh6hstslnndia7d2acwql6zdjpmaykgdfnauyxok/providers/Microsoft.ContainerRegistry/registries/cliregoy33bdvmssh3us","name":"cliregoy33bdvmssh3us","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:24.5479778Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:24.5479778Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '4977' + - '13686' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:30 GMT + - Thu, 30 Dec 2021 21:06:38 GMT expires: - '-1' pragma: @@ -853,22 +882,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.3821955+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.3821955+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.3821955Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.8834659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.6193685+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.6193685+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:22.6193685Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:23.6538629+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1284' + - '1201' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:30 GMT + - Thu, 30 Dec 2021 21:06:38 GMT expires: - '-1' pragma: @@ -902,14 +933,17 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook/ping?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook/ping?api-version=2021-08-01-preview response: body: - string: '{"id":"52f1a7c7-a768-4082-8104-d89aee324a14"}' + string: '{"id":"826b111c-23c8-4058-b0e4-6760ad44e217"}' headers: + api-supported-versions: + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: @@ -917,7 +951,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:31 GMT + - Thu, 30 Dec 2021 21:06:39 GMT expires: - '-1' pragma: @@ -933,7 +967,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1198' status: code: 200 message: OK @@ -951,21 +985,21 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-resource/18.0.0 Python/3.8.2 (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgny4abhjp3sd2yg7ugezzcm6ilgqgdiwxi6hcruh6jfdlhyujspsa5ve5eh4yi7ykf/providers/Microsoft.ContainerRegistry/registries/cliregmo6pgvda2nj4i7","name":"cliregmo6pgvda2nj4i7","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.1302009Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.1302009Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.3821955Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.3821955Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgjzwgbjviw7dbzgsr3kghwbypia2zhgirs2tscvnonkpbsflcj5fmsmn7opzeron57/providers/Microsoft.ContainerRegistry/registries/cliregujii5hs3akl336","name":"cliregujii5hs3akl336","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.9354962Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.9354962Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgo4s4myuxonjwppqkdhungd22lv5t3rqcc45cmk6tyancc3pkba7fjye4uftv6wqzk/providers/Microsoft.ContainerRegistry/registries/cliregl65ebkle6edykr","name":"cliregl65ebkle6edykr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:06.9454863Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:28.6867738Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-02-18T02:47:58.9284588Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhCliTest","name":"savaradhCliTest","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-registry/providers/Microsoft.ManagedIdentity/userAssignedIdentities/testidentity2":{"principalId":"0c000dbd-e7ed-4d35-9f9a-175829ba04e6","clientId":"fa43b151-1030-43cb-8640-dd95314728f5"}}},"tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2020-09-25T20:47:21.2621384Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2020-09-25T21:08:02.7027274Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubv2bp2xhohv2y2pt6xaf","name":"sourceregistrysamesubv2bp2xhohv2y2pt6xaf","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:28:10.9730452Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:28:10.9730452Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradhperg/providers/Microsoft.ContainerRegistry/registries/savaradhpe","name":"savaradhpe","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-11-12T00:36:37.8716947Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-12T00:36:37.8716947Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubowrf5abpqyhsrzjzqpq","name":"sourceregistrysamesubowrf5abpqyhsrzjzqpq","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:16:59.7885642Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:16:59.7885642Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubiaquyg2rq4c3fbd2ibd","name":"sourceregistrysamesubiaquyg2rq4c3fbd2ibd","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T01:31:33.6352135Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T01:31:33.6352135Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubp2jrp7x6c2eqztovwuz","name":"sourceregistrysamesubp2jrp7x6c2eqztovwuz","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T02:40:35.880771Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T02:40:35.880771Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub4nywyfgyysrrvh3sdzr","name":"sourceregistrysamesub4nywyfgyysrrvh3sdzr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T20:07:47.9887928Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T20:07:47.9887928Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubamlbbz3yyfuruewvhs2","name":"sourceregistrysamesubamlbbz3yyfuruewvhs2","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T21:44:02.1671524Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T21:44:02.1671524Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubwjt76lxjt3smyefaj2u","name":"sourceregistrysamesubwjt76lxjt3smyefaj2u","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-17T22:42:32.7779006Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-17T22:42:32.7779006Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6rllkuwyg7vzmsq2tje","name":"sourceregistrysamesub6rllkuwyg7vzmsq2tje","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:17:27.5074984Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:17:27.5074984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgx5ai4qdiirwoxchbbot6nomrp2mbbgss7el6d5mtyycbft6j5c6njz37pgt6otzis/providers/Microsoft.ContainerRegistry/registries/cliregl42ot2htbniuuu","name":"cliregl42ot2htbniuuu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:35:35.6450638Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:35:35.6450638Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesublpw4m3fsmgr23ckkcas","name":"sourceregistrysamesublpw4m3fsmgr23ckkcas","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:36:32.9159205Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:36:32.9159205Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesubqytbrim6nln7jsl5q6s","name":"sourceregistrysamesubqytbrim6nln7jsl5q6s","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:38:27.7036578Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:38:27.7036578Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgg2jrdtwxlozh33i7pmr2dg3mlx6m76m7jxmp23kzl5ndiekkjtoq3ur3ryyh4iwx6/providers/Microsoft.ContainerRegistry/registries/cliregkunelu63d5hheg","name":"cliregkunelu63d5hheg","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:47:17.661553Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:47:17.661553Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroupsamesub/providers/Microsoft.ContainerRegistry/registries/sourceregistrysamesub6azj7rxdrt5tfngscjr","name":"sourceregistrysamesub6azj7rxdrt5tfngscjr","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T20:48:20.696479Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T20:48:20.696479Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgcawcbt66ltcxdj6xvspudy3mb5725ivqgf3xoq6ogescjt3izy76wtic65dtceim5/providers/Microsoft.ContainerRegistry/registries/clireggkb3ar34jr72n3","name":"clireggkb3ar34jr72n3","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.2611378Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.2611378Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.6193685Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.6193685Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgoqpwjjlu3fzozq3kzkjifoxvlfh6hstslnndia7d2acwql6zdjpmaykgdfnauyxok/providers/Microsoft.ContainerRegistry/registries/cliregoy33bdvmssh3us","name":"cliregoy33bdvmssh3us","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westus","tags":{"foo":"bar","cat":""},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:24.5479778Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:39.5750581Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SavaradhOnpremGroup/providers/Microsoft.ContainerRegistry/registries/savaradhonprem","name":"savaradhonprem","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-06-02T21:56:51.8819196Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-06-02T21:59:09.0393984Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-canadacentral-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistrycanadacentral","name":"savaradhregistrycanadacentral","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"canadacentral","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-10-19T00:32:34.7317914Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-19T00:32:34.7317914Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-weu-rg/providers/Microsoft.ContainerRegistry/registries/savaradhregistryweu","name":"savaradhregistryweu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"westeurope","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-23T18:29:39.2485019Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-23T18:29:39.2485019Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-registry/providers/Microsoft.ContainerRegistry/registries/savaradhRegistry","name":"savaradhRegistry","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus","tags":{},"systemData":{"lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-19T19:39:26.613392Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/savaradh-eastus2euap/providers/Microsoft.ContainerRegistry/registries/savaradhcmkeastus2euap","name":"savaradhcmkeastus2euap","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Premium","tier":"Premium"},"location":"eastus2euap","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/savaradh-eastus2euap/providers/Microsoft.ManagedIdentity/userAssignedIdentities/savaradhmanagedidentity":{"principalId":"8b368ced-f629-485a-b902-02700faecb65","clientId":"b36ebcbd-d9ec-4192-8a73-37580fc9d6eb"}}},"tags":{}}]}' headers: cache-control: - no-cache content-length: - - '4977' + - '13706' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:31 GMT + - Thu, 30 Dec 2021 21:06:39 GMT expires: - '-1' pragma: @@ -993,22 +1027,24 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-08-18T01:27:05.3821955+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-08-18T01:27:05.3821955+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-08-18T01:27:05.3821955Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-08-18T01:27:07.8834659+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' + string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002","name":"clireg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T21:06:22.6193685+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T21:06:22.6193685+00:00"},"properties":{"loginServer":"clireg000002.azurecr.io","creationDate":"2021-12-30T21:06:22.6193685Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T21:06:23.6538629+00:00","status":"disabled"},"exportPolicy":{"status":"enabled"}},"encryption":{"status":"disabled"},"dataEndpointEnabled":false,"dataEndpointHostNames":[],"privateEndpointConnections":[],"publicNetworkAccess":"Enabled","networkRuleBypassOptions":"AzureServices","zoneRedundancy":"Disabled","anonymousPullEnabled":false}}' headers: + api-supported-versions: + - 2021-08-01-preview cache-control: - no-cache content-length: - - '1284' + - '1201' content-type: - application/json; charset=utf-8 date: - - Wed, 18 Aug 2021 01:27:32 GMT + - Thu, 30 Dec 2021 21:06:39 GMT expires: - '-1' pragma: @@ -1042,13 +1078,13 @@ interactions: ParameterSetName: - -n -r User-Agent: - - AZURECLI/2.27.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.2 - (Linux-5.10.16.3-microsoft-standard-WSL2-x86_64-with-glibc2.29) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook/listEvents?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/clireg000002/webhooks/cliregwebhook/listEvents?api-version=2021-08-01-preview response: body: - string: '{"value":[{"eventRequestMessage":{"content":{"id":"52f1a7c7-a768-4082-8104-d89aee324a14","timestamp":"2021-08-18T01:27:31.494048Z","action":"ping"},"headers":{"key":"value","Content-Type":"application/json; + string: '{"value":[{"eventRequestMessage":{"content":{"id":"826b111c-23c8-4058-b0e4-6760ad44e217","timestamp":"2021-12-30T21:06:39.5160873Z","action":"ping"},"headers":{"key":"value","Content-Type":"application/json; charset=utf-8","Content-Length":"104"},"method":"POST","requestUri":"http://www.microsoft.com/","version":"1.1"},"eventResponseMessage":{"content":"\r\n