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 @@ -516,7 +516,7 @@ interactions: content-type: - application/xml date: - - Mon, 15 Nov 2021 22:22:25 GMT + - Fri, 31 Dec 2021 00:00:57 GMT expires: - '-1' pragma: @@ -550,24 +550,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.6 - (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.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/webappacrtest000003?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"eastus2","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2021-11-15T22:21:36.024925+00:00","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-15T22:21:36.024925+00:00"},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2021-11-15T22:21:36.024925Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-11-15T22:21:37.5697907+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":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"eastus2","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T00:00:02.1379794+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T00:00:02.1379794+00:00"},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2021-12-31T00:00:02.1379794Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T00:00:03.2858974+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: - - '1219' + - '1216' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 22:22:26 GMT + - Fri, 31 Dec 2021 00:00:57 GMT expires: - '-1' pragma: @@ -601,16 +601,16 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.6 - (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-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/webappacrtest000003/listCredentials?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003/listCredentials?api-version=2021-08-01-preview response: body: - string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"TH6v/ErTO/1GpEfk8mr0JrgilxOMyz4H"},{"name":"password2","value":"YdhN6HZv4K9WuE+SH+sO8usWcmKenVIQ"}]}' + string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"Z4guKl0RgF09jSkG4Scp9BtA=XgIPYnd"},{"name":"password2","value":"92n4Aq1eu7uRba3/V4Fv46N06byejHDV"}]}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: @@ -618,7 +618,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 22:22:27 GMT + - Fri, 31 Dec 2021 00:00:58 GMT expires: - '-1' pragma: @@ -652,21 +652,21 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - 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/container_group/providers/Microsoft.ContainerRegistry/registries/sstrawn","name":"sstrawn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2021-09-22T22:03:42.8389144Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-22T22:11:55.1617611Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2021-11-15T22:21:36.024925Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-15T22:21:36.024925Z"}}]}' + 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/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.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-31T00:00:02.1379794Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-31T00:00:02.1379794Z"}},{"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: - - '1089' + - '12468' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 22:22:28 GMT + - Fri, 31 Dec 2021 00:00:58 GMT expires: - '-1' pragma: @@ -694,24 +694,24 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.6 - (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.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/webappacrtest000003?api-version=2019-05-01 response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"eastus2","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2021-11-15T22:21:36.024925Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-11-15T22:21:37.5697907+00:00","status":"disabled"}}}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/webappacrtest000003","name":"webappacrtest000003","location":"eastus2","tags":{},"properties":{"loginServer":"webappacrtest000003.azurecr.io","creationDate":"2021-12-31T00:00:02.1379794Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-31T00:00:03.2858974+00:00","status":"disabled"}}}}' headers: api-supported-versions: - '2019-05-01' cache-control: - no-cache content-length: - - '679' + - '680' content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 22:22:29 GMT + - Fri, 31 Dec 2021 00:00:58 GMT expires: - '-1' pragma: @@ -745,13 +745,13 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.6 - (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-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/webappacrtest000003/listCredentials?api-version=2019-05-01 response: body: - string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"TH6v/ErTO/1GpEfk8mr0JrgilxOMyz4H"},{"name":"password2","value":"YdhN6HZv4K9WuE+SH+sO8usWcmKenVIQ"}]}' + string: '{"username":"webappacrtest000003","passwords":[{"name":"password","value":"Z4guKl0RgF09jSkG4Scp9BtA=XgIPYnd"},{"name":"password2","value":"92n4Aq1eu7uRba3/V4Fv46N06byejHDV"}]}' headers: api-supported-versions: - '2019-05-01' @@ -762,7 +762,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 15 Nov 2021 22:22:29 GMT + - Fri, 31 Dec 2021 00:00:59 GMT expires: - '-1' pragma: @@ -798,7 +798,7 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/webappacrtest000003/config/appsettings/list?api-version=2020-09-01 response: @@ -813,7 +813,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Nov 2021 22:22:30 GMT + - Fri, 31 Dec 2021 00:00:59 GMT expires: - '-1' pragma: @@ -840,7 +840,7 @@ interactions: - request: body: '{"properties": {"DOCKER_REGISTRY_SERVER_URL": "https://webappacrtest000003.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": "webappacrtest000003", "DOCKER_REGISTRY_SERVER_PASSWORD": - "TH6v/ErTO/1GpEfk8mr0JrgilxOMyz4H"}}' + "Z4guKl0RgF09jSkG4Scp9BtA=XgIPYnd"}}' headers: Accept: - application/json @@ -851,19 +851,19 @@ interactions: Connection: - keep-alive Content-Length: - - '227' + - '217' Content-Type: - application/json ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/webappacrtest000003/config/appsettings?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US 2","properties":{"DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"TH6v/ErTO/1GpEfk8mr0JrgilxOMyz4H"}}' + US 2","properties":{"DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"Z4guKl0RgF09jSkG4Scp9BtA=XgIPYnd"}}' headers: cache-control: - no-cache @@ -872,9 +872,9 @@ interactions: content-type: - application/json date: - - Mon, 15 Nov 2021 22:22:38 GMT + - Fri, 31 Dec 2021 00:01:00 GMT etag: - - '"1D7DA6F4865ABCB"' + - '"1D7FDD97EF06555"' expires: - '-1' pragma: @@ -892,7 +892,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -914,13 +914,13 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/webappacrtest000003/config/appsettings/list?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US 2","properties":{"DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"TH6v/ErTO/1GpEfk8mr0JrgilxOMyz4H"}}' + US 2","properties":{"DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"Z4guKl0RgF09jSkG4Scp9BtA=XgIPYnd"}}' headers: cache-control: - no-cache @@ -929,7 +929,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Nov 2021 22:22:39 GMT + - Fri, 31 Dec 2021 00:01:01 GMT expires: - '-1' pragma: @@ -967,7 +967,7 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.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.Web/sites/webappacrtest000003/config/slotConfigNames?api-version=2020-09-01 response: @@ -982,7 +982,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Nov 2021 22:22:40 GMT + - Fri, 31 Dec 2021 00:01:02 GMT expires: - '-1' pragma: @@ -1018,24 +1018,24 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.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.Web/sites/webappacrtest000003?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.Web/sites","kind":"app,linux","location":"East - US 2","properties":{"name":"webappacrtest000003","state":"Running","hostNames":["webappacrtest000003.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-097.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace-Linux/sites/webappacrtest000003","repositorySiteName":"webappacrtest000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webappacrtest000003.azurewebsites.net","webappacrtest000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webappacrtest000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webappacrtest000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-11-15T22:22:32.1566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"NODE|14-lts","windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"publicNetworkAccess":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"sitePort":null},"deploymentId":"webappacrtest000003","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","kind":"app,linux","inboundIpAddress":"20.49.97.12","possibleInboundIpAddresses":"20.49.97.12","ftpUsername":"webappacrtest000003\\$webappacrtest000003","ftpsHostName":"ftps://waws-prod-bn1-097.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.184.211.143,52.184.212.207,52.184.215.103,52.232.209.124,52.232.209.202,52.232.212.237,20.49.97.12","possibleOutboundIpAddresses":"52.184.211.143,52.184.212.207,52.184.215.103,52.232.209.124,52.232.209.202,52.232.212.237,52.247.74.55,52.247.76.248,52.247.77.86,52.247.77.143,52.251.65.96,52.251.68.7,52.251.68.59,52.251.68.78,52.251.68.194,52.251.68.207,52.251.68.227,52.251.70.162,20.72.113.191,20.72.114.63,20.72.115.6,20.72.115.22,20.72.115.59,20.72.115.61,20.49.97.12","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-097","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webappacrtest000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned"}}' + US 2","properties":{"name":"webappacrtest000003","state":"Running","hostNames":["webappacrtest000003.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-073.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace-Linux/sites/webappacrtest000003","repositorySiteName":"webappacrtest000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webappacrtest000003.azurewebsites.net","webappacrtest000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|14-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webappacrtest000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webappacrtest000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplan000002","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-12-31T00:01:01.0133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"NODE|14-lts","windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"publicNetworkAccess":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null},"deploymentId":"webappacrtest000003","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ACD986437057D538D02973DDA2E8418186D59FE4997976991DF25BDD2B1890FD","kind":"app,linux","inboundIpAddress":"20.49.97.0","possibleInboundIpAddresses":"20.49.97.0","ftpUsername":"webappacrtest000003\\$webappacrtest000003","ftpsHostName":"ftps://waws-prod-bn1-073.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,20.49.97.0","possibleOutboundIpAddresses":"52.179.221.39,52.179.221.68,52.179.221.249,52.179.221.252,52.179.222.5,52.179.222.11,52.179.222.18,52.179.222.22,52.179.222.29,52.179.222.35,52.179.222.133,52.179.222.134,52.138.105.158,52.138.106.182,52.138.106.227,52.138.106.247,52.138.107.49,52.138.107.161,20.44.80.47,40.70.231.121,40.70.225.30,40.70.228.69,52.167.16.215,52.167.17.107,20.49.97.0","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-073","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webappacrtest000003.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned"}}' headers: cache-control: - no-cache content-length: - - '5983' + - '6036' content-type: - application/json date: - - Mon, 15 Nov 2021 22:22:41 GMT + - Fri, 31 Dec 2021 00:01:02 GMT etag: - - '"1D7DA6F4865ABCB"' + - '"1D7FDD97EF06555"' expires: - '-1' pragma: @@ -1071,7 +1071,7 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.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.Web/sites/webappacrtest000003/config/web?api-version=2020-09-01 response: @@ -1079,16 +1079,16 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web","name":"webappacrtest000003","type":"Microsoft.Web/sites/config","location":"East US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"NODE|14-lts","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"publicNetworkAccess":null,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null,"configVersion":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"sitePort":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"http20ProxyFlag":0,"sitePort":null,"antivirusScanEnabled":false}}' headers: cache-control: - no-cache content-length: - - '3701' + - '3750' content-type: - application/json date: - - Mon, 15 Nov 2021 22:22:42 GMT + - Fri, 31 Dec 2021 00:01:03 GMT expires: - '-1' pragma: @@ -1126,13 +1126,13 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/webappacrtest000003/config/appsettings/list?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US 2","properties":{"DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"TH6v/ErTO/1GpEfk8mr0JrgilxOMyz4H"}}' + US 2","properties":{"DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"Z4guKl0RgF09jSkG4Scp9BtA=XgIPYnd"}}' headers: cache-control: - no-cache @@ -1141,7 +1141,7 @@ interactions: content-type: - application/json date: - - Mon, 15 Nov 2021 22:22:43 GMT + - Fri, 31 Dec 2021 00:01:04 GMT expires: - '-1' pragma: @@ -1159,7 +1159,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -1168,7 +1168,7 @@ interactions: - request: body: '{"properties": {"DOCKER_REGISTRY_SERVER_URL": "https://webappacrtest000003.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": "webappacrtest000003", "DOCKER_REGISTRY_SERVER_PASSWORD": - "TH6v/ErTO/1GpEfk8mr0JrgilxOMyz4H", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false"}}' + "Z4guKl0RgF09jSkG4Scp9BtA=XgIPYnd", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false"}}' headers: Accept: - application/json @@ -1179,19 +1179,19 @@ interactions: Connection: - keep-alive Content-Length: - - '275' + - '265' Content-Type: - application/json ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/webappacrtest000003/config/appsettings?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US 2","properties":{"DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"TH6v/ErTO/1GpEfk8mr0JrgilxOMyz4H","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false"}}' + US 2","properties":{"DOCKER_REGISTRY_SERVER_URL":"https://webappacrtest000003.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"webappacrtest000003","DOCKER_REGISTRY_SERVER_PASSWORD":"Z4guKl0RgF09jSkG4Scp9BtA=XgIPYnd","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false"}}' headers: cache-control: - no-cache @@ -1200,9 +1200,9 @@ interactions: content-type: - application/json date: - - Mon, 15 Nov 2021 22:22:44 GMT + - Fri, 31 Dec 2021 00:01:05 GMT etag: - - '"1D7DA6F4FEBD6C0"' + - '"1D7FDD981AABD60"' expires: - '-1' pragma: @@ -1220,7 +1220,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1252,13 +1252,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1275' + - '1265' Content-Type: - application/json ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/webappacrtest000003/config/web?api-version=2020-09-01 response: @@ -1266,18 +1266,18 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003","name":"webappacrtest000003","type":"Microsoft.Web/sites","location":"East US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"DOCKER|webappacrtest000003.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"publicNetworkAccess":null,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null,"configVersion":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"sitePort":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"http20ProxyFlag":0,"sitePort":null,"antivirusScanEnabled":false}}' headers: cache-control: - no-cache content-length: - - '3731' + - '3780' content-type: - application/json date: - - Mon, 15 Nov 2021 22:22:46 GMT + - Fri, 31 Dec 2021 00:01:07 GMT etag: - - '"1D7DA6F4FEBD6C0"' + - '"1D7FDD981AABD60"' expires: - '-1' pragma: @@ -1295,7 +1295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -1315,7 +1315,7 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.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.Web/sites/webappacrtest000003/config/web?api-version=2020-09-01 response: @@ -1323,16 +1323,16 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webappacrtest000003/config/web","name":"webappacrtest000003","type":"Microsoft.Web/sites/config","location":"East US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"DOCKER|webappacrtest000003.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$webappacrtest000003","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"publicNetworkAccess":null,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null,"configVersion":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"sitePort":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"http20ProxyFlag":0,"sitePort":null,"antivirusScanEnabled":false}}' headers: cache-control: - no-cache content-length: - - '3749' + - '3798' content-type: - application/json date: - - Mon, 15 Nov 2021 22:22:47 GMT + - Fri, 31 Dec 2021 00:01:08 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml index a093caf6c99..4ad157fb6f7 100644 --- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml +++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_acr_integration_function_app.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - --admin-enabled -g -n --sku User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - 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?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-19T21:35:10Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-12-30T23:49:31Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 19 Nov 2021 21:35:34 GMT + - Thu, 30 Dec 2021 23:49:53 GMT expires: - '-1' pragma: @@ -60,26 +60,26 @@ interactions: ParameterSetName: - --admin-enabled -g -n --sku User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.6 - (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-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/functionappacrtest000004?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2021-11-19T21:35:38.4240724+00:00","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-19T21:35:38.4240724+00:00"},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2021-11-19T21:35:38.4240724Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-11-19T21:35:40.2004547+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":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:49:56.0488516+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:49:56.0488516+00:00"},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2021-12-30T23:49:56.0488516Z","provisioningState":"Creating","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T23:49:58.0004468+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/functionappacrtest000004/operationStatuses/registries-a17022fa-4980-11ec-8975-6c96cfda2705?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/operationStatuses/registries-364b6596-69cb-11ec-9e1d-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: - - '1235' + - '1229' content-type: - application/json; charset=utf-8 date: - - Fri, 19 Nov 2021 21:35:40 GMT + - Thu, 30 Dec 2021 23:49:57 GMT expires: - '-1' pragma: @@ -91,7 +91,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 201 message: Created @@ -109,18 +109,18 @@ interactions: ParameterSetName: - --admin-enabled -g -n --sku User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.6 - (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.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/functionappacrtest000004/operationStatuses/registries-a17022fa-4980-11ec-8975-6c96cfda2705?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/operationStatuses/registries-364b6596-69cb-11ec-9e1d-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/functionappacrtest000004/operationStatuses/registries-a17022fa-4980-11ec-8975-6c96cfda2705?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/operationStatuses/registries-364b6596-69cb-11ec-9e1d-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: @@ -128,7 +128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 19 Nov 2021 21:35:50 GMT + - Thu, 30 Dec 2021 23:50:07 GMT expires: - '-1' pragma: @@ -160,24 +160,24 @@ interactions: ParameterSetName: - --admin-enabled -g -n --sku User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.6 - (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.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/functionappacrtest000004?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2021-11-19T21:35:38.4240724+00:00","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-19T21:35:38.4240724+00:00"},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2021-11-19T21:35:38.4240724Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-11-19T21:35:40.2004547+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":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:49:56.0488516+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:49:56.0488516+00:00"},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2021-12-30T23:49:56.0488516Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T23:49:58.0004468+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: - - '1236' + - '1230' content-type: - application/json; charset=utf-8 date: - - Fri, 19 Nov 2021 21:35:51 GMT + - Thu, 30 Dec 2021 23:50:07 GMT expires: - '-1' pragma: @@ -209,12 +209,12 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - 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?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-11-19T21:35:10Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-12-30T23:49:31Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -223,7 +223,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 19 Nov 2021 21:35:51 GMT + - Thu, 30 Dec 2021 23:50:13 GMT expires: - '-1' pragma: @@ -256,13 +256,13 @@ interactions: ParameterSetName: - -g -n --sku --is-linux User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/serverfarms/acrtestplanfunction000003?api-version=2020-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"eastus","properties":{"serverFarmId":25402,"name":"acrtestplanfunction000003","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-EastUSwebspace-Linux","subscription":"2edc29f4-b81f-494b-a624-cc619903b837","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East - US","perSiteScaling":false,"elasticScaleEnabled":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-219_25402","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"eastus","properties":{"serverFarmId":27911,"name":"acrtestplanfunction000003","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-EastUSwebspace-Linux","subscription":"ede84bdd-554d-4a25-8cf0-187ff21c3032","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"elasticScaleEnabled":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-217_27911","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -271,9 +271,9 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:10 GMT + - Thu, 30 Dec 2021 23:50:35 GMT etag: - - '"1D7DD8D777FA420"' + - '"1D7FDD809A6290B"' expires: - '-1' pragma: @@ -291,7 +291,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -311,14 +311,14 @@ interactions: ParameterSetName: - -g -n -s --plan --functions-version --runtime User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.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.Web/serverfarms/acrtestplanfunction000003?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","name":"acrtestplanfunction000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East - US","properties":{"serverFarmId":25402,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-EastUSwebspace-Linux","subscription":"2edc29f4-b81f-494b-a624-cc619903b837","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East - US","perSiteScaling":false,"elasticScaleEnabled":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-219_25402","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' + US","properties":{"serverFarmId":27911,"name":"acrtestplanfunction000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-EastUSwebspace-Linux","subscription":"ede84bdd-554d-4a25-8cf0-187ff21c3032","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East + US","perSiteScaling":false,"elasticScaleEnabled":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-blu-217_27911","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"zoneRedundant":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}' headers: cache-control: - no-cache @@ -327,7 +327,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:10 GMT + - Thu, 30 Dec 2021 23:50:36 GMT expires: - '-1' pragma: @@ -363,12 +363,12 @@ interactions: ParameterSetName: - -g -n -s --plan --functions-version --runtime User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-storage/19.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.Storage/storageAccounts/clitest000002?api-version=2021-06-01 response: body: - string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-11-19T21:35:15.4395731Z","key2":"2021-11-19T21:35:15.4395731Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-19T21:35:15.4395731Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-11-19T21:35:15.4395731Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-11-19T21:35:15.3458854Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"keyCreationTime":{"key1":"2021-12-30T23:49:33.3078683Z","key2":"2021-12-30T23:49:33.3078683Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T23:49:33.3078683Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-12-30T23:49:33.3078683Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-12-30T23:49:33.2140883Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}' headers: cache-control: - no-cache @@ -377,7 +377,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:11 GMT + - Thu, 30 Dec 2021 23:50:36 GMT expires: - '-1' pragma: @@ -411,12 +411,12 @@ interactions: ParameterSetName: - -g -n -s --plan --functions-version --runtime User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-storage/19.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-storage/19.0.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.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-06-01&$expand=kerb response: body: - string: '{"keys":[{"creationTime":"2021-11-19T21:35:15.4395731Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-11-19T21:35:15.4395731Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + string: '{"keys":[{"creationTime":"2021-12-30T23:49:33.3078683Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2021-12-30T23:49:33.3078683Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' headers: cache-control: - no-cache @@ -425,7 +425,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:11 GMT + - Thu, 30 Dec 2021 23:50:36 GMT expires: - '-1' pragma: @@ -449,7 +449,7 @@ interactions: body: '{"kind": "functionapp,linux", "location": "East US", "properties": {"serverFarmId": "acrtestplanfunction000003", "reserved": true, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "Node|14", "appSettings": - [{"name": "MACHINEKEY_DecryptionKey", "value": "007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441"}, + [{"name": "MACHINEKEY_DecryptionKey", "value": "7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E"}, {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "true"}, {"name": "FUNCTIONS_WORKER_RUNTIME", "value": "node"}, {"name": "FUNCTIONS_EXTENSION_VERSION", "value": "~3"}, {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}], @@ -465,32 +465,32 @@ interactions: Connection: - keep-alive Content-Length: - - '925' + - '855' Content-Type: - application/json ParameterSetName: - -g -n -s --plan --functions-version --runtime User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"East - US","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUSwebspace-Linux","selfLink":"https://waws-prod-blu-219.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUSwebspace-Linux/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"Node|14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-11-19T21:36:14.8166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"publicNetworkAccess":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow + US","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUSwebspace-Linux","selfLink":"https://waws-prod-blu-217.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUSwebspace-Linux/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"Node|14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-12-30T23:50:40.03","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"publicNetworkAccess":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":false,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"sitePort":null},"deploymentId":"functionappacrtest000004","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","kind":"functionapp,linux","inboundIpAddress":"20.49.104.17","possibleInboundIpAddresses":"20.49.104.17","ftpUsername":"functionappacrtest000004\\$functionappacrtest000004","ftpsHostName":"ftps://waws-prod-blu-219.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.188.40.144,52.188.42.24,52.188.46.173,52.188.47.47,52.188.47.123,52.188.47.194,20.49.104.17","possibleOutboundIpAddresses":"52.188.40.144,52.188.42.24,52.188.46.173,52.188.47.47,52.188.47.123,52.188.47.194,20.185.10.41,20.185.15.124,52.142.20.123,52.142.22.161,52.142.23.118,52.147.210.205,52.147.211.152,52.147.214.21,52.149.201.179,52.149.205.26,52.150.48.83,52.150.51.164,20.84.18.66,20.84.19.141,20.84.19.240,20.84.19.245,20.84.20.175,20.84.20.181,20.49.104.17","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-219","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned"}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":false,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null},"deploymentId":"functionappacrtest000004","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ACD986437057D538D02973DDA2E8418186D59FE4997976991DF25BDD2B1890FD","kind":"functionapp,linux","inboundIpAddress":"20.49.104.15","possibleInboundIpAddresses":"20.49.104.15","ftpUsername":"functionappacrtest000004\\$functionappacrtest000004","ftpsHostName":"ftps://waws-prod-blu-217.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.76.167.202,52.146.70.44,52.146.70.103,52.146.68.209,52.146.68.246,52.146.69.57,20.49.104.15","possibleOutboundIpAddresses":"40.76.167.202,52.146.70.44,52.146.70.103,52.146.68.209,52.146.68.246,52.146.69.57,52.146.70.115,52.146.70.118,52.146.70.158,52.146.66.148,52.146.71.5,40.76.165.150,40.76.167.156,40.76.167.157,52.146.68.142,52.146.64.68,52.146.65.22,52.146.65.23,52.191.239.27,52.191.239.78,52.191.239.120,52.224.200.31,52.224.201.90,52.224.202.78,20.49.104.15","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-217","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned"}}' headers: cache-control: - no-cache content-length: - - '6136' + - '6184' content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:30 GMT + - Thu, 30 Dec 2021 23:50:55 GMT etag: - - '"1D7DD8D7B302900"' + - '"1D7FDD80D22CCAB"' expires: - '-1' pragma: @@ -533,13 +533,13 @@ interactions: ParameterSetName: - -g -n -s --plan --functions-version --runtime User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-applicationinsights/1.0.0 Python/3.8.6 - (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-applicationinsights/1.0.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.Insights/components/functionappacrtest000004?api-version=2015-05-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappacrtest000004","name":"functionappacrtest000004","type":"microsoft.insights/components","location":"eastus","tags":{},"kind":"web","etag":"\"d300c592-0000-0100-0000-619818e40000\"","properties":{"Ver":"v2","ApplicationId":"functionappacrtest000004","AppId":"d1b6de15-452e-4ae8-ab7a-0b8887bc5c2f","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"ccba4b89-34ed-43c8-b28c-5979f2edd203","ConnectionString":"InstrumentationKey=ccba4b89-34ed-43c8-b28c-5979f2edd203;IngestionEndpoint=https://eastus-6.in.applicationinsights.azure.com/","Name":"functionappacrtest000004","CreationDate":"2021-11-19T21:36:35.9980556+00:00","TenantId":"2edc29f4-b81f-494b-a624-cc619903b837","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionappacrtest000004","name":"functionappacrtest000004","type":"microsoft.insights/components","location":"eastus","tags":{},"kind":"web","etag":"\"f4002503-0000-0100-0000-61ce45e40000\"","properties":{"Ver":"v2","ApplicationId":"functionappacrtest000004","AppId":"d55bc80f-9cb1-4dd5-bb11-e4329895474f","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"d23f2c02-6620-411d-b467-65cd2bbedfcc","ConnectionString":"InstrumentationKey=d23f2c02-6620-411d-b467-65cd2bbedfcc;IngestionEndpoint=https://eastus-6.in.applicationinsights.azure.com/","Name":"functionappacrtest000004","CreationDate":"2021-12-30T23:50:59.9357224+00:00","TenantId":"ede84bdd-554d-4a25-8cf0-187ff21c3032","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}' headers: access-control-expose-headers: - Request-Context @@ -550,7 +550,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 19 Nov 2021 21:36:39 GMT + - Thu, 30 Dec 2021 23:51:01 GMT expires: - '-1' pragma: @@ -590,13 +590,13 @@ interactions: ParameterSetName: - -g -n -s --plan --functions-version --runtime User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US","properties":{"MACHINEKEY_DecryptionKey":"007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}}' + US","properties":{"MACHINEKEY_DecryptionKey":"7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}}' headers: cache-control: - no-cache @@ -605,7 +605,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:39 GMT + - Thu, 30 Dec 2021 23:51:02 GMT expires: - '-1' pragma: @@ -630,10 +630,10 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"MACHINEKEY_DecryptionKey": "007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441", + body: '{"properties": {"MACHINEKEY_DecryptionKey": "7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~3", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "APPINSIGHTS_INSTRUMENTATIONKEY": "ccba4b89-34ed-43c8-b28c-5979f2edd203"}}' + "APPINSIGHTS_INSTRUMENTATIONKEY": "d23f2c02-6620-411d-b467-65cd2bbedfcc"}}' headers: Accept: - application/json @@ -644,19 +644,19 @@ interactions: Connection: - keep-alive Content-Length: - - '532' + - '461' Content-Type: - application/json ParameterSetName: - -g -n -s --plan --functions-version --runtime User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004/config/appsettings?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US","properties":{"MACHINEKEY_DecryptionKey":"007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"ccba4b89-34ed-43c8-b28c-5979f2edd203"}}' + US","properties":{"MACHINEKEY_DecryptionKey":"7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"d23f2c02-6620-411d-b467-65cd2bbedfcc"}}' headers: cache-control: - no-cache @@ -665,9 +665,9 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:41 GMT + - Thu, 30 Dec 2021 23:51:03 GMT etag: - - '"1D7DD8D8A48B3EB"' + - '"1D7FDD81A9DD435"' expires: - '-1' pragma: @@ -685,7 +685,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -705,24 +705,24 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.6 - (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.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/functionappacrtest000004?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2021-11-19T21:35:38.4240724+00:00","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-19T21:35:38.4240724+00:00"},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2021-11-19T21:35:38.4240724Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-11-19T21:35:40.2004547+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":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:49:56.0488516+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:49:56.0488516+00:00"},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2021-12-30T23:49:56.0488516Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T23:49:58.0004468+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: - - '1236' + - '1230' content-type: - application/json; charset=utf-8 date: - - Fri, 19 Nov 2021 21:36:41 GMT + - Thu, 30 Dec 2021 23:51:04 GMT expires: - '-1' pragma: @@ -756,16 +756,16 @@ interactions: ParameterSetName: - -n -g User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.6 - (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-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/functionappacrtest000004/listCredentials?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004/listCredentials?api-version=2021-08-01-preview response: body: - string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"v/Kaet1FFbMaO8V5YcgAOXfjECCO8lad"},{"name":"password2","value":"TTSSbbPqdZ7nwjRQFXOKDhvq1Mg/H5RS"}]}' + string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"TvHS/8JxcVs1eK5Izbp/TfFP0424REOz"},{"name":"password2","value":"MiqbT1b+oWwMN5RuR9iHppQGxXPaxLFk"}]}' headers: api-supported-versions: - - 2021-06-01-preview + - 2021-08-01-preview cache-control: - no-cache content-length: @@ -773,7 +773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 19 Nov 2021 21:36:42 GMT + - Thu, 30 Dec 2021 23:51:04 GMT expires: - '-1' pragma: @@ -807,21 +807,21 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - 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/container_group/providers/Microsoft.ContainerRegistry/registries/sstrawn","name":"sstrawn","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2021-09-22T22:03:42.8389144Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-09-22T22:11:55.1617611Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgmuiittyrfwxgerzmxeedwcd4ol4kwdjhgg4c56vx7dpyvqu6xhei26f4pkpo5e6lt/providers/Microsoft.ContainerRegistry/registries/functionappacrtestolafez","name":"functionappacrtestolafez","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"brazilsouth","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2021-11-19T21:35:50.6531359Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-19T21:35:50.6531359Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgqxpyu3d2r2ktmz4nycaayws6i3z24yrsmsts4jfjbljsaqlzer55zwgmtxle5puum/providers/Microsoft.ContainerRegistry/registries/functionappacrtest7g22jy","name":"functionappacrtest7g22jy","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"brazilsouth","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2021-11-19T21:35:52.0850068Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-19T21:35:52.0850068Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"silasstrawn@microsoft.com","createdByType":"User","createdAt":"2021-11-19T21:35:38.4240724Z","lastModifiedBy":"silasstrawn@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-19T21:35:38.4240724Z"}}]}' + 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/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.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:49:56.0488516Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:49:56.0488516Z"}},{"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: - - '2346' + - '12477' content-type: - application/json; charset=utf-8 date: - - Fri, 19 Nov 2021 21:36:42 GMT + - Thu, 30 Dec 2021 23:51:04 GMT expires: - '-1' pragma: @@ -849,13 +849,13 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.6 - (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.2 + (Linux-5.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/functionappacrtest000004?api-version=2019-05-01 response: body: - string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"eastus","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2021-11-19T21:35:38.4240724Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-11-19T21:35:40.2004547+00:00","status":"disabled"}}}}' + string: '{"sku":{"name":"Basic","tier":"Basic"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/functionappacrtest000004","name":"functionappacrtest000004","location":"eastus","tags":{},"properties":{"loginServer":"functionappacrtest000004.azurecr.io","creationDate":"2021-12-30T23:49:56.0488516Z","provisioningState":"Succeeded","adminUserEnabled":true,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T23:49:58.0004468+00:00","status":"disabled"}}}}' headers: api-supported-versions: - '2019-05-01' @@ -866,7 +866,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 19 Nov 2021 21:36:44 GMT + - Thu, 30 Dec 2021 23:51:06 GMT expires: - '-1' pragma: @@ -900,13 +900,13 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-containerregistry/8.2.0 Python/3.8.6 - (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-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/functionappacrtest000004/listCredentials?api-version=2019-05-01 response: body: - string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"v/Kaet1FFbMaO8V5YcgAOXfjECCO8lad"},{"name":"password2","value":"TTSSbbPqdZ7nwjRQFXOKDhvq1Mg/H5RS"}]}' + string: '{"username":"functionappacrtest000004","passwords":[{"name":"password","value":"TvHS/8JxcVs1eK5Izbp/TfFP0424REOz"},{"name":"password2","value":"MiqbT1b+oWwMN5RuR9iHppQGxXPaxLFk"}]}' headers: api-supported-versions: - '2019-05-01' @@ -917,7 +917,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 19 Nov 2021 21:36:44 GMT + - Thu, 30 Dec 2021 23:51:06 GMT expires: - '-1' pragma: @@ -953,13 +953,13 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US","properties":{"MACHINEKEY_DecryptionKey":"007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"ccba4b89-34ed-43c8-b28c-5979f2edd203"}}' + US","properties":{"MACHINEKEY_DecryptionKey":"7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"d23f2c02-6620-411d-b467-65cd2bbedfcc"}}' headers: cache-control: - no-cache @@ -968,7 +968,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:45 GMT + - Thu, 30 Dec 2021 23:51:06 GMT expires: - '-1' pragma: @@ -993,12 +993,12 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"MACHINEKEY_DecryptionKey": "007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441", + body: '{"properties": {"MACHINEKEY_DecryptionKey": "7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~3", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "APPINSIGHTS_INSTRUMENTATIONKEY": "ccba4b89-34ed-43c8-b28c-5979f2edd203", "DOCKER_REGISTRY_SERVER_URL": + "APPINSIGHTS_INSTRUMENTATIONKEY": "d23f2c02-6620-411d-b467-65cd2bbedfcc", "DOCKER_REGISTRY_SERVER_URL": "https://functionappacrtest000004.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": - "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": "v/Kaet1FFbMaO8V5YcgAOXfjECCO8lad"}}' + "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": "TvHS/8JxcVs1eK5Izbp/TfFP0424REOz"}}' headers: Accept: - application/json @@ -1009,19 +1009,19 @@ interactions: Connection: - keep-alive Content-Length: - - '743' + - '672' Content-Type: - application/json ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004/config/appsettings?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US","properties":{"MACHINEKEY_DecryptionKey":"007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"ccba4b89-34ed-43c8-b28c-5979f2edd203","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"v/Kaet1FFbMaO8V5YcgAOXfjECCO8lad"}}' + US","properties":{"MACHINEKEY_DecryptionKey":"7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"d23f2c02-6620-411d-b467-65cd2bbedfcc","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"TvHS/8JxcVs1eK5Izbp/TfFP0424REOz"}}' headers: cache-control: - no-cache @@ -1030,9 +1030,9 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:45 GMT + - Thu, 30 Dec 2021 23:51:08 GMT etag: - - '"1D7DD8D8D2212AB"' + - '"1D7FDD81D9ACD8B"' expires: - '-1' pragma: @@ -1072,13 +1072,13 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US","properties":{"MACHINEKEY_DecryptionKey":"007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"ccba4b89-34ed-43c8-b28c-5979f2edd203","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"v/Kaet1FFbMaO8V5YcgAOXfjECCO8lad"}}' + US","properties":{"MACHINEKEY_DecryptionKey":"7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"d23f2c02-6620-411d-b467-65cd2bbedfcc","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"TvHS/8JxcVs1eK5Izbp/TfFP0424REOz"}}' headers: cache-control: - no-cache @@ -1087,7 +1087,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:46 GMT + - Thu, 30 Dec 2021 23:51:09 GMT expires: - '-1' pragma: @@ -1125,7 +1125,7 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.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.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2020-09-01 response: @@ -1140,7 +1140,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:47 GMT + - Thu, 30 Dec 2021 23:51:09 GMT expires: - '-1' pragma: @@ -1176,24 +1176,24 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.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.Web/sites/functionappacrtest000004?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"East - US","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUSwebspace-Linux","selfLink":"https://waws-prod-blu-219.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUSwebspace-Linux/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"Node|14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-11-19T21:36:45.8666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"Node|14","windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"publicNetworkAccess":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"sitePort":null},"deploymentId":"functionappacrtest000004","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"333646C25EDA7C903C86F0F0D0193C412978B2E48FA0B4F1461D339FBBAE3EB7","kind":"functionapp,linux","inboundIpAddress":"20.49.104.17","possibleInboundIpAddresses":"20.49.104.17","ftpUsername":"functionappacrtest000004\\$functionappacrtest000004","ftpsHostName":"ftps://waws-prod-blu-219.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.188.40.144,52.188.42.24,52.188.46.173,52.188.47.47,52.188.47.123,52.188.47.194,20.49.104.17","possibleOutboundIpAddresses":"52.188.40.144,52.188.42.24,52.188.46.173,52.188.47.47,52.188.47.123,52.188.47.194,20.185.10.41,20.185.15.124,52.142.20.123,52.142.22.161,52.142.23.118,52.147.210.205,52.147.211.152,52.147.214.21,52.149.201.179,52.149.205.26,52.150.48.83,52.150.51.164,20.84.18.66,20.84.19.141,20.84.19.240,20.84.19.245,20.84.20.175,20.84.20.181,20.49.104.17","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-219","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned"}}' + US","properties":{"name":"functionappacrtest000004","state":"Running","hostNames":["functionappacrtest000004.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUSwebspace-Linux","selfLink":"https://waws-prod-blu-217.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUSwebspace-Linux/sites/functionappacrtest000004","repositorySiteName":"functionappacrtest000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappacrtest000004.azurewebsites.net","functionappacrtest000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"Node|14"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappacrtest000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappacrtest000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/acrtestplanfunction000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-12-30T23:51:08.2166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"Node|14","windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"publicNetworkAccess":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":true,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":null,"http20ProxyFlag":null,"sitePort":null,"antivirusScanEnabled":null},"deploymentId":"functionappacrtest000004","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"ACD986437057D538D02973DDA2E8418186D59FE4997976991DF25BDD2B1890FD","kind":"functionapp,linux","inboundIpAddress":"20.49.104.15","possibleInboundIpAddresses":"20.49.104.15","ftpUsername":"functionappacrtest000004\\$functionappacrtest000004","ftpsHostName":"ftps://waws-prod-blu-217.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.76.167.202,52.146.70.44,52.146.70.103,52.146.68.209,52.146.68.246,52.146.69.57,20.49.104.15","possibleOutboundIpAddresses":"40.76.167.202,52.146.70.44,52.146.70.103,52.146.68.209,52.146.68.246,52.146.69.57,52.146.70.115,52.146.70.118,52.146.70.158,52.146.66.148,52.146.71.5,40.76.165.150,40.76.167.156,40.76.167.157,52.146.68.142,52.146.64.68,52.146.65.22,52.146.65.23,52.191.239.27,52.191.239.78,52.191.239.120,52.224.200.31,52.224.201.90,52.224.202.78,20.49.104.15","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-217","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionappacrtest000004.azurewebsites.net","slotSwapStatus":null,"httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false,"virtualNetworkSubnetId":null,"keyVaultReferenceIdentity":"SystemAssigned"}}' headers: cache-control: - no-cache content-length: - - '5941' + - '5994' content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:48 GMT + - Thu, 30 Dec 2021 23:51:10 GMT etag: - - '"1D7DD8D8D2212AB"' + - '"1D7FDD81D9ACD8B"' expires: - '-1' pragma: @@ -1229,7 +1229,7 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.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.Web/sites/functionappacrtest000004/config/web?api-version=2020-09-01 response: @@ -1237,16 +1237,16 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"East US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"Node|14","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"publicNetworkAccess":null,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null,"configVersion":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"sitePort":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"http20ProxyFlag":0,"sitePort":null,"antivirusScanEnabled":false}}' headers: cache-control: - no-cache content-length: - - '3691' + - '3740' content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:48 GMT + - Thu, 30 Dec 2021 23:51:10 GMT expires: - '-1' pragma: @@ -1284,13 +1284,13 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US","properties":{"MACHINEKEY_DecryptionKey":"007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"ccba4b89-34ed-43c8-b28c-5979f2edd203","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"v/Kaet1FFbMaO8V5YcgAOXfjECCO8lad"}}' + US","properties":{"MACHINEKEY_DecryptionKey":"7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"d23f2c02-6620-411d-b467-65cd2bbedfcc","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"TvHS/8JxcVs1eK5Izbp/TfFP0424REOz"}}' headers: cache-control: - no-cache @@ -1299,7 +1299,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:49 GMT + - Thu, 30 Dec 2021 23:51:11 GMT expires: - '-1' pragma: @@ -1317,19 +1317,19 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"properties": {"MACHINEKEY_DecryptionKey": "007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441", + body: '{"properties": {"MACHINEKEY_DecryptionKey": "7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E", "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "false", "FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~3", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "APPINSIGHTS_INSTRUMENTATIONKEY": "ccba4b89-34ed-43c8-b28c-5979f2edd203", "DOCKER_REGISTRY_SERVER_URL": + "APPINSIGHTS_INSTRUMENTATIONKEY": "d23f2c02-6620-411d-b467-65cd2bbedfcc", "DOCKER_REGISTRY_SERVER_URL": "https://functionappacrtest000004.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": - "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": "v/Kaet1FFbMaO8V5YcgAOXfjECCO8lad"}}' + "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": "TvHS/8JxcVs1eK5Izbp/TfFP0424REOz"}}' headers: Accept: - application/json @@ -1340,19 +1340,19 @@ interactions: Connection: - keep-alive Content-Length: - - '744' + - '673' Content-Type: - application/json ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004/config/appsettings?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US","properties":{"MACHINEKEY_DecryptionKey":"007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"ccba4b89-34ed-43c8-b28c-5979f2edd203","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"v/Kaet1FFbMaO8V5YcgAOXfjECCO8lad"}}' + US","properties":{"MACHINEKEY_DecryptionKey":"7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"d23f2c02-6620-411d-b467-65cd2bbedfcc","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"TvHS/8JxcVs1eK5Izbp/TfFP0424REOz"}}' headers: cache-control: - no-cache @@ -1361,9 +1361,9 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:50 GMT + - Thu, 30 Dec 2021 23:51:12 GMT etag: - - '"1D7DD8D8FC175AB"' + - '"1D7FDD8201D32AB"' expires: - '-1' pragma: @@ -1381,7 +1381,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -1419,7 +1419,7 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004/config/web?api-version=2020-09-01 response: @@ -1427,18 +1427,18 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004","name":"functionappacrtest000004","type":"Microsoft.Web/sites","location":"East US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"publicNetworkAccess":null,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null,"configVersion":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"sitePort":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"http20ProxyFlag":0,"sitePort":null,"antivirusScanEnabled":false}}' headers: cache-control: - no-cache content-length: - - '3730' + - '3779' content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:52 GMT + - Thu, 30 Dec 2021 23:51:14 GMT etag: - - '"1D7DD8D8FC175AB"' + - '"1D7FDD8201D32AB"' expires: - '-1' pragma: @@ -1476,7 +1476,7 @@ interactions: ParameterSetName: - -g -n --docker-custom-image-name --docker-registry-server-url User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.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.Web/sites/functionappacrtest000004/config/web?api-version=2020-09-01 response: @@ -1484,16 +1484,16 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"East US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"publicNetworkAccess":null,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null,"configVersion":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"sitePort":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"http20ProxyFlag":0,"sitePort":null,"antivirusScanEnabled":false}}' headers: cache-control: - no-cache content-length: - - '3748' + - '3797' content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:53 GMT + - Thu, 30 Dec 2021 23:51:14 GMT expires: - '-1' pragma: @@ -1531,13 +1531,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US","properties":{"MACHINEKEY_DecryptionKey":"007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"ccba4b89-34ed-43c8-b28c-5979f2edd203","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"v/Kaet1FFbMaO8V5YcgAOXfjECCO8lad"}}' + US","properties":{"MACHINEKEY_DecryptionKey":"7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"d23f2c02-6620-411d-b467-65cd2bbedfcc","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"TvHS/8JxcVs1eK5Izbp/TfFP0424REOz"}}' headers: cache-control: - no-cache @@ -1546,7 +1546,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:54 GMT + - Thu, 30 Dec 2021 23:51:15 GMT expires: - '-1' pragma: @@ -1584,7 +1584,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.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.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2020-09-01 response: @@ -1599,7 +1599,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:54 GMT + - Thu, 30 Dec 2021 23:51:16 GMT expires: - '-1' pragma: @@ -1635,7 +1635,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.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.Web/sites/functionappacrtest000004/config/web?api-version=2020-09-01 response: @@ -1643,16 +1643,16 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"East US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"publicNetworkAccess":null,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null,"configVersion":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"sitePort":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"http20ProxyFlag":0,"sitePort":null,"antivirusScanEnabled":false}}' headers: cache-control: - no-cache content-length: - - '3748' + - '3797' content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:55 GMT + - Thu, 30 Dec 2021 23:51:16 GMT expires: - '-1' pragma: @@ -1690,13 +1690,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US","properties":{"MACHINEKEY_DecryptionKey":"007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"ccba4b89-34ed-43c8-b28c-5979f2edd203","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"v/Kaet1FFbMaO8V5YcgAOXfjECCO8lad"}}' + US","properties":{"MACHINEKEY_DecryptionKey":"7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"d23f2c02-6620-411d-b467-65cd2bbedfcc","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"TvHS/8JxcVs1eK5Izbp/TfFP0424REOz"}}' headers: cache-control: - no-cache @@ -1705,7 +1705,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:56 GMT + - Thu, 30 Dec 2021 23:51:16 GMT expires: - '-1' pragma: @@ -1743,7 +1743,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.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.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2020-09-01 response: @@ -1758,7 +1758,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:56 GMT + - Thu, 30 Dec 2021 23:51:17 GMT expires: - '-1' pragma: @@ -1794,7 +1794,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.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.Web/sites/functionappacrtest000004/config/web?api-version=2020-09-01 response: @@ -1802,16 +1802,16 @@ interactions: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/web","name":"functionappacrtest000004","type":"Microsoft.Web/sites/config","location":"East US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"DOCKER|functionappacrtest000004.azurecr.io/image-name:latest","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"publicNetworkAccess":null,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null,"configVersion":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"sitePort":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"http20ProxyFlag":0,"sitePort":null,"antivirusScanEnabled":false}}' headers: cache-control: - no-cache content-length: - - '3748' + - '3797' content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:57 GMT + - Thu, 30 Dec 2021 23:51:18 GMT expires: - '-1' pragma: @@ -1849,13 +1849,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US","properties":{"MACHINEKEY_DecryptionKey":"007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"ccba4b89-34ed-43c8-b28c-5979f2edd203","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"v/Kaet1FFbMaO8V5YcgAOXfjECCO8lad"}}' + US","properties":{"MACHINEKEY_DecryptionKey":"7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"false","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"d23f2c02-6620-411d-b467-65cd2bbedfcc","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"TvHS/8JxcVs1eK5Izbp/TfFP0424REOz"}}' headers: cache-control: - no-cache @@ -1864,7 +1864,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:58 GMT + - Thu, 30 Dec 2021 23:51:18 GMT expires: - '-1' pragma: @@ -1882,7 +1882,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11999' + - '11998' x-powered-by: - ASP.NET status: @@ -1902,7 +1902,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.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.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2020-09-01 response: @@ -1917,7 +1917,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:58 GMT + - Thu, 30 Dec 2021 23:51:19 GMT expires: - '-1' pragma: @@ -1940,12 +1940,12 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"MACHINEKEY_DecryptionKey": "007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441", + body: '{"properties": {"MACHINEKEY_DecryptionKey": "7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E", "FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~3", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "APPINSIGHTS_INSTRUMENTATIONKEY": "ccba4b89-34ed-43c8-b28c-5979f2edd203", "DOCKER_REGISTRY_SERVER_URL": + "APPINSIGHTS_INSTRUMENTATIONKEY": "d23f2c02-6620-411d-b467-65cd2bbedfcc", "DOCKER_REGISTRY_SERVER_URL": "https://functionappacrtest000004.azurecr.io", "DOCKER_REGISTRY_SERVER_USERNAME": - "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": "v/Kaet1FFbMaO8V5YcgAOXfjECCO8lad"}}' + "functionappacrtest000004", "DOCKER_REGISTRY_SERVER_PASSWORD": "TvHS/8JxcVs1eK5Izbp/TfFP0424REOz"}}' headers: Accept: - application/json @@ -1956,19 +1956,19 @@ interactions: Connection: - keep-alive Content-Length: - - '696' + - '625' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004/config/appsettings?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US","properties":{"MACHINEKEY_DecryptionKey":"007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"ccba4b89-34ed-43c8-b28c-5979f2edd203","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"v/Kaet1FFbMaO8V5YcgAOXfjECCO8lad"}}' + US","properties":{"MACHINEKEY_DecryptionKey":"7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"d23f2c02-6620-411d-b467-65cd2bbedfcc","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"TvHS/8JxcVs1eK5Izbp/TfFP0424REOz"}}' headers: cache-control: - no-cache @@ -1977,9 +1977,9 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:36:59 GMT + - Thu, 30 Dec 2021 23:51:20 GMT etag: - - '"1D7DD8D9529F0C0"' + - '"1D7FDD824DE5735"' expires: - '-1' pragma: @@ -1997,7 +1997,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -2035,7 +2035,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004/config/web?api-version=2020-09-01 response: @@ -2044,18 +2044,18 @@ interactions: US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":" ","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappacrtest000004","publishingPassword":null,"appSettings":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"publicNetworkAccess":null,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null,"configVersion":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow - all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"sitePort":null}}' + all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0,"azureStorageAccounts":{},"http20ProxyFlag":0,"sitePort":null,"antivirusScanEnabled":false}}' headers: cache-control: - no-cache content-length: - - '3671' + - '3720' content-type: - application/json date: - - Fri, 19 Nov 2021 21:37:02 GMT + - Thu, 30 Dec 2021 23:51:23 GMT etag: - - '"1D7DD8D9529F0C0"' + - '"1D7FDD824DE5735"' expires: - '-1' pragma: @@ -2073,7 +2073,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -2095,13 +2095,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US","properties":{"MACHINEKEY_DecryptionKey":"007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"ccba4b89-34ed-43c8-b28c-5979f2edd203","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"v/Kaet1FFbMaO8V5YcgAOXfjECCO8lad"}}' + US","properties":{"MACHINEKEY_DecryptionKey":"7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"d23f2c02-6620-411d-b467-65cd2bbedfcc","DOCKER_REGISTRY_SERVER_URL":"https://functionappacrtest000004.azurecr.io","DOCKER_REGISTRY_SERVER_USERNAME":"functionappacrtest000004","DOCKER_REGISTRY_SERVER_PASSWORD":"TvHS/8JxcVs1eK5Izbp/TfFP0424REOz"}}' headers: cache-control: - no-cache @@ -2110,7 +2110,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:37:02 GMT + - Thu, 30 Dec 2021 23:51:23 GMT expires: - '-1' pragma: @@ -2128,7 +2128,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -2148,7 +2148,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.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.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2020-09-01 response: @@ -2163,7 +2163,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:37:03 GMT + - Thu, 30 Dec 2021 23:51:24 GMT expires: - '-1' pragma: @@ -2186,10 +2186,10 @@ interactions: code: 200 message: OK - request: - body: '{"properties": {"MACHINEKEY_DecryptionKey": "007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441", + body: '{"properties": {"MACHINEKEY_DecryptionKey": "7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E", "FUNCTIONS_WORKER_RUNTIME": "node", "FUNCTIONS_EXTENSION_VERSION": "~3", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==", - "APPINSIGHTS_INSTRUMENTATIONKEY": "ccba4b89-34ed-43c8-b28c-5979f2edd203"}}' + "APPINSIGHTS_INSTRUMENTATIONKEY": "d23f2c02-6620-411d-b467-65cd2bbedfcc"}}' headers: Accept: - application/json @@ -2200,19 +2200,19 @@ interactions: Connection: - keep-alive Content-Length: - - '485' + - '414' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004/config/appsettings?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US","properties":{"MACHINEKEY_DecryptionKey":"007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"ccba4b89-34ed-43c8-b28c-5979f2edd203"}}' + US","properties":{"MACHINEKEY_DecryptionKey":"7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"d23f2c02-6620-411d-b467-65cd2bbedfcc"}}' headers: cache-control: - no-cache @@ -2221,9 +2221,9 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:37:04 GMT + - Thu, 30 Dec 2021 23:51:25 GMT etag: - - '"1D7DD8D9818AC40"' + - '"1D7FDD827761915"' expires: - '-1' pragma: @@ -2241,7 +2241,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -2263,13 +2263,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004/config/appsettings/list?api-version=2020-09-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionappacrtest000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"East - US","properties":{"MACHINEKEY_DecryptionKey":"007A130581DEA58B6B4B490D93A15ECE75553CF4E12F0C62F48C83897F6A3441","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"ccba4b89-34ed-43c8-b28c-5979f2edd203"}}' + US","properties":{"MACHINEKEY_DecryptionKey":"7EF6F908E4FCDF9C8E60733A346E5C3C59C75657A105BAD58DC3E16AF3B1E95E","FUNCTIONS_WORKER_RUNTIME":"node","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"d23f2c02-6620-411d-b467-65cd2bbedfcc"}}' headers: cache-control: - no-cache @@ -2278,7 +2278,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:37:04 GMT + - Thu, 30 Dec 2021 23:51:25 GMT expires: - '-1' pragma: @@ -2296,7 +2296,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '11998' + - '11999' x-powered-by: - ASP.NET status: @@ -2316,7 +2316,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.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.Web/sites/functionappacrtest000004/config/slotConfigNames?api-version=2020-09-01 response: @@ -2331,7 +2331,7 @@ interactions: content-type: - application/json date: - - Fri, 19 Nov 2021 21:37:06 GMT + - Thu, 30 Dec 2021 23:51:25 GMT expires: - '-1' pragma: @@ -2369,7 +2369,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.30.0 azsdk-python-azure-mgmt-web/4.0.0 Python/3.8.6 (macOS-10.15.7-x86_64-i386-64bit) + - AZURECLI/2.31.0 azsdk-python-azure-mgmt-web/4.0.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.Web/sites/functionappacrtest000004?api-version=2020-09-01 response: @@ -2381,9 +2381,9 @@ interactions: content-length: - '0' date: - - Fri, 19 Nov 2021 21:37:17 GMT + - Thu, 30 Dec 2021 23:51:34 GMT etag: - - '"1D7DD8D9818AC40"' + - '"1D7FDD827761915"' expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_acr.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_acr.yaml index d9dd60b1af7..4ad6c3fa200 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_acr.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_endpoint_connection_acr.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -g -n --subnet-name 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/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T08:43:38Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-12-30T23:44:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '435' + - '317' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:43:45 GMT + - Thu, 30 Dec 2021 23:44:32 GMT expires: - '-1' pragma: @@ -56,27 +56,27 @@ interactions: Connection: - keep-alive Content-Length: - - '318' + - '314' Content-Type: - application/json ParameterSetName: - -g -n --subnet-name 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/testvnet000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"testvnet000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003\",\r\n - \ \"etag\": \"W/\\\"90b869d5-d28d-41c4-b705-3f6327d33890\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9483ba36-d4c4-41d0-ae4d-ed2acf58ac98\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"9d7ddd09-59fa-41aa-939a-403b3d9d6412\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"3a10d05b-05c3-4540-80fa-82fd95219aab\",\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\": \"testsubnet000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004\",\r\n - \ \"etag\": \"W/\\\"90b869d5-d28d-41c4-b705-3f6327d33890\\\"\",\r\n + \ \"etag\": \"W/\\\"9483ba36-d4c4-41d0-ae4d-ed2acf58ac98\\\"\",\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\": @@ -87,15 +87,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/51f1826e-6e29-428b-85f3-1960956326dd?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/afaa0975-6f73-482e-bae5-ff546002db60?api-version=2021-05-01 cache-control: - no-cache content-length: - - '1481' + - '1337' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:43:54 GMT + - Thu, 30 Dec 2021 23:44:35 GMT expires: - '-1' pragma: @@ -108,9 +108,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 582425c7-3b8e-460c-bb2c-aac7a040866d + - 961df983-a284-4fa0-a6f7-ff47acfb2730 x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1197' status: code: 201 message: Created @@ -128,9 +128,9 @@ interactions: ParameterSetName: - -g -n --subnet-name 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/centraluseuap/operations/51f1826e-6e29-428b-85f3-1960956326dd?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/afaa0975-6f73-482e-bae5-ff546002db60?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -142,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:43:58 GMT + - Thu, 30 Dec 2021 23:44:38 GMT expires: - '-1' pragma: @@ -159,7 +159,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9ff34901-7eac-4598-8878-d9ef0c974ae9 + - 1cc99d9b-9b89-4301-8bc5-f609d145eb39 status: code: 200 message: OK @@ -177,21 +177,21 @@ interactions: ParameterSetName: - -g -n --subnet-name 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/testvnet000003?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"testvnet000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003\",\r\n - \ \"etag\": \"W/\\\"dc106ed5-4c8b-42b9-b159-5cf0cf52db10\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"57ce0746-d76b-41e5-ba75-ffeea0e08502\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centraluseuap\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9d7ddd09-59fa-41aa-939a-403b3d9d6412\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"3a10d05b-05c3-4540-80fa-82fd95219aab\",\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\": \"testsubnet000004\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004\",\r\n - \ \"etag\": \"W/\\\"dc106ed5-4c8b-42b9-b159-5cf0cf52db10\\\"\",\r\n + \ \"etag\": \"W/\\\"57ce0746-d76b-41e5-ba75-ffeea0e08502\\\"\",\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\": @@ -202,13 +202,13 @@ interactions: cache-control: - no-cache content-length: - - '1483' + - '1339' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:43:58 GMT + - Thu, 30 Dec 2021 23:44:38 GMT etag: - - W/"dc106ed5-4c8b-42b9-b159-5cf0cf52db10" + - W/"57ce0746-d76b-41e5-ba75-ffeea0e08502" expires: - '-1' pragma: @@ -225,7 +225,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f5851983-8411-4745-b1e9-4f5bdd6cb6fe + - e36f1461-0426-4e80-8d9d-f3a9c30ecbb7 status: code: 200 message: OK @@ -243,13 +243,13 @@ interactions: ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies 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/testvnet000003/subnets/testsubnet000004?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"testsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004\",\r\n - \ \"etag\": \"W/\\\"dc106ed5-4c8b-42b9-b159-5cf0cf52db10\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"57ce0746-d76b-41e5-ba75-ffeea0e08502\\\"\",\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\": \"Enabled\"\r\n },\r\n \"type\": @@ -258,13 +258,13 @@ interactions: cache-control: - no-cache content-length: - - '627' + - '554' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:44:00 GMT + - Thu, 30 Dec 2021 23:44:38 GMT etag: - - W/"dc106ed5-4c8b-42b9-b159-5cf0cf52db10" + - W/"57ce0746-d76b-41e5-ba75-ffeea0e08502" expires: - '-1' pragma: @@ -281,7 +281,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f4418cf1-8ee7-49a4-bce9-9ae477d2e487 + - d9b6fea9-cd43-4562-92ea-223156b6b39a status: code: 200 message: OK @@ -300,34 +300,34 @@ interactions: Connection: - keep-alive Content-Length: - - '492' + - '419' Content-Type: - application/json ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies 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/testvnet000003/subnets/testsubnet000004?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"testsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004\",\r\n - \ \"etag\": \"W/\\\"8968c790-e9d1-42fc-b29a-5095f44d1819\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"f4a6ed85-e498-4f35-b0ff-3c22c2519cc2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/72990bd9-a4ab-4cd6-8588-b3442b00719b?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/6b6406b2-ec61-4ccd-85e2-7aeddab195dd?api-version=2021-05-01 cache-control: - no-cache content-length: - - '627' + - '554' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:44:05 GMT + - Thu, 30 Dec 2021 23:44:39 GMT expires: - '-1' pragma: @@ -344,9 +344,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7d196af7-0bb4-4514-83f1-196d5077780f + - 5f474ad3-d7b2-4fb6-9a8f-a78aa157a526 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 200 message: OK @@ -364,9 +364,9 @@ interactions: ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies 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/centraluseuap/operations/72990bd9-a4ab-4cd6-8588-b3442b00719b?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/6b6406b2-ec61-4ccd-85e2-7aeddab195dd?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -378,7 +378,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:44:08 GMT + - Thu, 30 Dec 2021 23:44:43 GMT expires: - '-1' pragma: @@ -395,7 +395,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 48102ec8-b61b-41c2-8dd1-e22f973dad09 + - 1a542eb5-c0ed-4332-9896-42a4cd31615c status: code: 200 message: OK @@ -413,13 +413,13 @@ interactions: ParameterSetName: - -g --vnet-name --name --disable-private-endpoint-network-policies 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/testvnet000003/subnets/testsubnet000004?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"testsubnet000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004\",\r\n - \ \"etag\": \"W/\\\"7ecc68e6-948d-4c0a-a3ff-79f08b2cd6c1\\\"\",\r\n \"properties\": + \ \"etag\": \"W/\\\"c77db168-28f8-42e3-8e78-cce2d1834b07\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": @@ -428,13 +428,13 @@ interactions: cache-control: - no-cache content-length: - - '628' + - '555' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:44:09 GMT + - Thu, 30 Dec 2021 23:44:43 GMT etag: - - W/"7ecc68e6-948d-4c0a-a3ff-79f08b2cd6c1" + - W/"c77db168-28f8-42e3-8e78-cce2d1834b07" expires: - '-1' pragma: @@ -451,7 +451,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f309011b-b8a3-47d4-9679-51b1ccb01069 + - 5ca65d64-b71c-4ca0-a251-13a0e2fa968e status: code: 200 message: OK @@ -469,21 +469,21 @@ interactions: ParameterSetName: - --name --resource-group --sku 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/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T08:43:38Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-12-30T23:44:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '435' + - '317' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:44:11 GMT + - Thu, 30 Dec 2021 23:44:44 GMT expires: - '-1' pragma: @@ -516,26 +516,26 @@ interactions: ParameterSetName: - --name --resource-group --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/testreg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?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/testreg000002","name":"testreg000002","location":"centraluseuap","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-03T08:44:19.1365342+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-03T08:44:19.1365342+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2021-11-03T08:44:19.1365342Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-11-03T08:44:22.3716132+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/testreg000002","name":"testreg000002","location":"centraluseuap","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:44:46.4532874+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:44:46.4532874+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2021-12-30T23:44:46.4532874Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T23:44:47.5309371+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/testreg000002/operationStatuses/registries-35e6a490-3c82-11ec-a2ad-f48e389cc17c?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-7daa7388-69ca-11ec-af33-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: - - '1369' + - '1289' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:44:23 GMT + - Thu, 30 Dec 2021 23:44:47 GMT expires: - '-1' pragma: @@ -547,7 +547,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 201 message: Created @@ -565,18 +565,18 @@ interactions: ParameterSetName: - --name --resource-group --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/testreg000002/operationStatuses/registries-35e6a490-3c82-11ec-a2ad-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/testreg000002/operationStatuses/registries-7daa7388-69ca-11ec-af33-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/testreg000002/operationStatuses/registries-35e6a490-3c82-11ec-a2ad-f48e389cc17c?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-7daa7388-69ca-11ec-af33-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: @@ -584,7 +584,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:44:34 GMT + - Thu, 30 Dec 2021 23:44:57 GMT expires: - '-1' pragma: @@ -616,24 +616,24 @@ interactions: ParameterSetName: - --name --resource-group --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/testreg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?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/testreg000002","name":"testreg000002","location":"centraluseuap","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-03T08:44:19.1365342+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-03T08:44:19.1365342+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2021-11-03T08:44:19.1365342Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-11-03T08:44:22.3716132+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/testreg000002","name":"testreg000002","location":"centraluseuap","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:44:46.4532874+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:44:46.4532874+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2021-12-30T23:44:46.4532874Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T23:44:47.5309371+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: - - '1370' + - '1290' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:44:34 GMT + - Thu, 30 Dec 2021 23:44:57 GMT expires: - '-1' pragma: @@ -666,21 +666,21 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request 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/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T08:43:38Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-12-30T23:44:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '435' + - '317' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:44:36 GMT + - Thu, 30 Dec 2021 23:44:58 GMT expires: - '-1' pragma: @@ -710,26 +710,26 @@ interactions: Connection: - keep-alive Content-Length: - - '774' + - '637' Content-Type: - application/json ParameterSetName: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request 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/privateEndpoints/priv_endpoint000005?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"priv_endpoint000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005\",\r\n - \ \"etag\": \"W/\\\"c8e7bbe3-618d-4b8a-8a86-327baf58a5a9\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5cb56b3d-f90b-4fa6-9976-331e0e152827\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"dc4e4900-be93-4a96-b32c-af651657ea0b\",\r\n \"privateLinkServiceConnections\": + \"9d09199d-8e65-4f89-9df2-4c66fbac30f6\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"priv_endpointconn000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005/manualPrivateLinkServiceConnections/priv_endpointconn000006\",\r\n - \ \"etag\": \"W/\\\"c8e7bbe3-618d-4b8a-8a86-327baf58a5a9\\\"\",\r\n + \ \"etag\": \"W/\\\"5cb56b3d-f90b-4fa6-9976-331e0e152827\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002\",\r\n \ \"groupIds\": [\r\n \"registry\"\r\n ],\r\n @@ -739,21 +739,21 @@ interactions: \ }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004\"\r\n \ },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000005.nic.0c5a3377-0f1b-4bf7-acc9-966012f66b84\"\r\n + \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000005.nic.57f8719d-1fac-4cee-ac2e-6cbdf0c7978f\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/d8c9d548-d949-413a-b46f-f880552b2758?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/43729b80-8ba7-49d1-9496-d8bae95898f8?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2419' + - '2079' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:44:46 GMT + - Thu, 30 Dec 2021 23:45:00 GMT expires: - '-1' pragma: @@ -766,9 +766,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8d47d348-9ec5-497e-b0a7-0f7eed89db8b + - 4b0bf0db-0a69-4375-9b7c-af6a92502964 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 201 message: Created @@ -787,9 +787,9 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request 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/centraluseuap/operations/d8c9d548-d949-413a-b46f-f880552b2758?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/43729b80-8ba7-49d1-9496-d8bae95898f8?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -801,7 +801,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:44:57 GMT + - Thu, 30 Dec 2021 23:45:11 GMT expires: - '-1' pragma: @@ -818,7 +818,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 37f468c4-9ae6-4c71-a4eb-bf94008ae104 + - c5a9b134-d0e5-4204-8620-780b6f1dade7 status: code: 200 message: OK @@ -837,9 +837,109 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request 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/centraluseuap/operations/d8c9d548-d949-413a-b46f-f880552b2758?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/43729b80-8ba7-49d1-9496-d8bae95898f8?api-version=2021-05-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:45:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 63eec83c-9526-48be-84f9-b5a7aef76f2c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name + --manual-request + User-Agent: + - 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/centraluseuap/operations/43729b80-8ba7-49d1-9496-d8bae95898f8?api-version=2021-05-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:45:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3d637aea-25b3-42b6-95d0-b660b3e198da + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name + --manual-request + User-Agent: + - 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/centraluseuap/operations/43729b80-8ba7-49d1-9496-d8bae95898f8?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -851,7 +951,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:45:07 GMT + - Thu, 30 Dec 2021 23:46:01 GMT expires: - '-1' pragma: @@ -868,7 +968,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 515e781e-1538-4930-9329-046f6eeab173 + - fced5d43-85d2-4cc7-9f6e-c641279835b8 status: code: 200 message: OK @@ -887,19 +987,19 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request 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/privateEndpoints/priv_endpoint000005?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"priv_endpoint000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005\",\r\n - \ \"etag\": \"W/\\\"6f3e7fb9-0338-43ca-835d-d3acdafb8856\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e53cd49b-a8bf-4b6f-be26-675228395654\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"dc4e4900-be93-4a96-b32c-af651657ea0b\",\r\n \"privateLinkServiceConnections\": + \"9d09199d-8e65-4f89-9df2-4c66fbac30f6\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"priv_endpointconn000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005/manualPrivateLinkServiceConnections/priv_endpointconn000006\",\r\n - \ \"etag\": \"W/\\\"6f3e7fb9-0338-43ca-835d-d3acdafb8856\\\"\",\r\n + \ \"etag\": \"W/\\\"e53cd49b-a8bf-4b6f-be26-675228395654\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002\",\r\n \ \"groupIds\": [\r\n \"registry\"\r\n ],\r\n @@ -909,19 +1009,19 @@ interactions: \ }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004\"\r\n \ },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000005.nic.0c5a3377-0f1b-4bf7-acc9-966012f66b84\"\r\n + \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000005.nic.57f8719d-1fac-4cee-ac2e-6cbdf0c7978f\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2403' + - '2063' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:45:08 GMT + - Thu, 30 Dec 2021 23:46:01 GMT etag: - - W/"6f3e7fb9-0338-43ca-835d-d3acdafb8856" + - W/"e53cd49b-a8bf-4b6f-be26-675228395654" expires: - '-1' pragma: @@ -938,7 +1038,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8d9efe65-7bdd-45ea-a468-f05b81f0dfce + - 38c86fd6-e512-417f-b539-1641b769274d status: code: 200 message: OK @@ -956,23 +1056,25 @@ interactions: ParameterSetName: - -g --name --type User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) AZURECLI/2.30.0 + - python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.31.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2019-12-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.0aedc992d4e1401a9059150db71d2e43","name":"testreg000002.0aedc992d4e1401a9059150db71d2e43","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309","name":"testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 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: - - '797' + - '652' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:45:13 GMT + - Thu, 30 Dec 2021 23:46:02 GMT expires: - '-1' pragma: @@ -1004,23 +1106,25 @@ interactions: ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) AZURECLI/2.30.0 + - python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.31.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.0aedc992d4e1401a9059150db71d2e43?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.0aedc992d4e1401a9059150db71d2e43","name":"testreg000002.0aedc992d4e1401a9059150db71d2e43","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309","name":"testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 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: - - '785' + - '640' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:45:16 GMT + - Thu, 30 Dec 2021 23:46:02 GMT expires: - '-1' pragma: @@ -1040,8 +1144,8 @@ interactions: message: OK - request: body: '{"type": "Microsoft.ContainerRegistry/registries/privateEndpointConnections", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.0aedc992d4e1401a9059150db71d2e43", - "name": "testreg000002.0aedc992d4e1401a9059150db71d2e43", "properties": {"privateEndpoint": + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309", + "name": "testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309", "properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"}, "privateLinkServiceConnectionState": {"status": "Approved", "description": "somedescription"}, "provisioningState": "Succeeded"}}' @@ -1055,31 +1159,33 @@ interactions: Connection: - keep-alive Content-Length: - - '834' + - '689' Content-Type: - application/json ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) AZURECLI/2.30.0 + - python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.31.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.0aedc992d4e1401a9059150db71d2e43?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.0aedc992d4e1401a9059150db71d2e43","name":"testreg000002.0aedc992d4e1401a9059150db71d2e43","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-03T08:45:18.565272+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-03T08:45:18.565272+00:00"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Updating"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309","name":"testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:46:04.1897098+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:46:04.1897098+00:00"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Updating"}}' headers: api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-12-01-preview, 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/testreg000002/privateEndpointConnections/testreg000002.0aedc992d4e1401a9059150db71d2e43/operationStatuses/privateendpointconnections-3f6938db-73d8-4a8a-84a7-66181c99573c?api-version=2019-12-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309/operationStatuses/privateendpointconnections-5aeaffd1-4524-4f21-a94c-ce29e35591a0?api-version=2019-12-01-preview cache-control: - no-cache content-length: - - '1028' + - '885' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:45:19 GMT + - Thu, 30 Dec 2021 23:46:04 GMT expires: - '-1' pragma: @@ -1091,7 +1197,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -1109,23 +1215,25 @@ interactions: ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) AZURECLI/2.30.0 + - python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.31.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.0aedc992d4e1401a9059150db71d2e43?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.0aedc992d4e1401a9059150db71d2e43","name":"testreg000002.0aedc992d4e1401a9059150db71d2e43","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309","name":"testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 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: - - '818' + - '673' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:45:32 GMT + - Thu, 30 Dec 2021 23:46:14 GMT expires: - '-1' pragma: @@ -1158,21 +1266,21 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request 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/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-11-03T08:43:38Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-12-30T23:44:40Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '435' + - '317' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:45:35 GMT + - Thu, 30 Dec 2021 23:46:15 GMT expires: - '-1' pragma: @@ -1202,26 +1310,26 @@ interactions: Connection: - keep-alive Content-Length: - - '774' + - '637' Content-Type: - application/json ParameterSetName: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request 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/privateEndpoints/priv_endpoint000007?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"priv_endpoint000007\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007\",\r\n - \ \"etag\": \"W/\\\"79797a43-3da2-439b-8b44-6a6839e76d31\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"be038250-c0ad-4774-af4a-8ec2fe3d4ab0\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": - \"dfb364a8-4e2b-4f51-8e7a-46ea803f0668\",\r\n \"privateLinkServiceConnections\": + \"e1ab9c64-15ac-47d1-a423-a3cd77899a11\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"priv_endpointconn000008\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007/manualPrivateLinkServiceConnections/priv_endpointconn000008\",\r\n - \ \"etag\": \"W/\\\"79797a43-3da2-439b-8b44-6a6839e76d31\\\"\",\r\n + \ \"etag\": \"W/\\\"be038250-c0ad-4774-af4a-8ec2fe3d4ab0\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002\",\r\n \ \"groupIds\": [\r\n \"registry\"\r\n ],\r\n @@ -1231,21 +1339,21 @@ interactions: \ }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004\"\r\n \ },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000007.nic.60e10c31-733c-42d1-87a9-ee49256acd1f\"\r\n + \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000007.nic.dca26a52-0858-4144-ba2a-27fab7f669a2\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/6ecf000f-05e8-4732-832c-880271bc6cb2?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/5421233e-ea56-430d-bf90-d2463ce0af0a?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2419' + - '2079' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:45:45 GMT + - Thu, 30 Dec 2021 23:46:17 GMT expires: - '-1' pragma: @@ -1258,9 +1366,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 889b6a79-ec36-4df3-81d0-5f94e759f749 + - 99832444-f3d0-41a9-80e5-6c699de70a34 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1197' status: code: 201 message: Created @@ -1279,9 +1387,59 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request 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/centraluseuap/operations/5421233e-ea56-430d-bf90-d2463ce0af0a?api-version=2021-05-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:46:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 1aafb5f4-113d-4d69-a815-001a788cea8b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network private-endpoint create + Connection: + - keep-alive + ParameterSetName: + - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name + --manual-request + User-Agent: + - 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/centraluseuap/operations/6ecf000f-05e8-4732-832c-880271bc6cb2?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/5421233e-ea56-430d-bf90-d2463ce0af0a?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1293,7 +1451,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:45:56 GMT + - Thu, 30 Dec 2021 23:46:38 GMT expires: - '-1' pragma: @@ -1310,7 +1468,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 18f277a9-93db-4b94-b0a0-82d58b8b10cb + - e120d5f7-75bf-46aa-87d8-67565fdb2de9 status: code: 200 message: OK @@ -1329,9 +1487,9 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request 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/centraluseuap/operations/6ecf000f-05e8-4732-832c-880271bc6cb2?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centraluseuap/operations/5421233e-ea56-430d-bf90-d2463ce0af0a?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1343,7 +1501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:46:06 GMT + - Thu, 30 Dec 2021 23:46:58 GMT expires: - '-1' pragma: @@ -1360,7 +1518,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b335630d-fa2e-4950-bcfb-2f43da86e2f1 + - 393e2d0b-0813-4bbb-9479-21d284ffe643 status: code: 200 message: OK @@ -1379,19 +1537,19 @@ interactions: - -n -g --subnet --vnet-name --private-connection-resource-id --group-id --connection-name --manual-request 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/privateEndpoints/priv_endpoint000007?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"priv_endpoint000007\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007\",\r\n - \ \"etag\": \"W/\\\"bb00ed92-a5cf-43e3-892e-bb9deda54f6e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6d236482-ecec-4375-b534-6a85721d231d\\\"\",\r\n \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"centraluseuap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": - \"dfb364a8-4e2b-4f51-8e7a-46ea803f0668\",\r\n \"privateLinkServiceConnections\": + \"e1ab9c64-15ac-47d1-a423-a3cd77899a11\",\r\n \"privateLinkServiceConnections\": [],\r\n \"manualPrivateLinkServiceConnections\": [\r\n {\r\n \"name\": \"priv_endpointconn000008\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007/manualPrivateLinkServiceConnections/priv_endpointconn000008\",\r\n - \ \"etag\": \"W/\\\"bb00ed92-a5cf-43e3-892e-bb9deda54f6e\\\"\",\r\n + \ \"etag\": \"W/\\\"6d236482-ecec-4375-b534-6a85721d231d\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002\",\r\n \ \"groupIds\": [\r\n \"registry\"\r\n ],\r\n @@ -1401,19 +1559,19 @@ interactions: \ }\r\n ],\r\n \"customNetworkInterfaceName\": \"\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/testvnet000003/subnets/testsubnet000004\"\r\n \ },\r\n \"ipConfigurations\": [],\r\n \"networkInterfaces\": [\r\n - \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000007.nic.60e10c31-733c-42d1-87a9-ee49256acd1f\"\r\n + \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/priv_endpoint000007.nic.dca26a52-0858-4144-ba2a-27fab7f669a2\"\r\n \ }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2403' + - '2063' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:46:07 GMT + - Thu, 30 Dec 2021 23:46:58 GMT etag: - - W/"bb00ed92-a5cf-43e3-892e-bb9deda54f6e" + - W/"6d236482-ecec-4375-b534-6a85721d231d" expires: - '-1' pragma: @@ -1430,7 +1588,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 41ec4b48-9d56-4731-bbce-eb9761fc00c6 + - c4f38c70-1a9e-4d3d-903f-1aa444421748 status: code: 200 message: OK @@ -1448,23 +1606,25 @@ interactions: ParameterSetName: - -g --name --type User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) AZURECLI/2.30.0 + - python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.31.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2019-12-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.0aedc992d4e1401a9059150db71d2e43","name":"testreg000002.0aedc992d4e1401a9059150db71d2e43","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}},{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.92c0c5cef965497fa2922727c3a22a04","name":"testreg000002.92c0c5cef965497fa2922727c3a22a04","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5a55a3dca1344167b82bc63b77191f61","name":"testreg000002.5a55a3dca1344167b82bc63b77191f61","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}},{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309","name":"testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 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: - - '1616' + - '1326' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:46:10 GMT + - Thu, 30 Dec 2021 23:46:58 GMT expires: - '-1' pragma: @@ -1496,23 +1656,25 @@ interactions: ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) AZURECLI/2.30.0 + - python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.31.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.92c0c5cef965497fa2922727c3a22a04?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5a55a3dca1344167b82bc63b77191f61?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.92c0c5cef965497fa2922727c3a22a04","name":"testreg000002.92c0c5cef965497fa2922727c3a22a04","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5a55a3dca1344167b82bc63b77191f61","name":"testreg000002.5a55a3dca1344167b82bc63b77191f61","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 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: - - '785' + - '640' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:46:13 GMT + - Thu, 30 Dec 2021 23:46:59 GMT expires: - '-1' pragma: @@ -1532,8 +1694,8 @@ interactions: message: OK - request: body: '{"type": "Microsoft.ContainerRegistry/registries/privateEndpointConnections", - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.92c0c5cef965497fa2922727c3a22a04", - "name": "testreg000002.92c0c5cef965497fa2922727c3a22a04", "properties": {"privateEndpoint": + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5a55a3dca1344167b82bc63b77191f61", + "name": "testreg000002.5a55a3dca1344167b82bc63b77191f61", "properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"}, "privateLinkServiceConnectionState": {"status": "Rejected", "description": "somedescription"}, "provisioningState": "Succeeded"}}' @@ -1547,31 +1709,33 @@ interactions: Connection: - keep-alive Content-Length: - - '834' + - '689' Content-Type: - application/json ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) AZURECLI/2.30.0 + - python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.31.0 method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.92c0c5cef965497fa2922727c3a22a04?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5a55a3dca1344167b82bc63b77191f61?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.92c0c5cef965497fa2922727c3a22a04","name":"testreg000002.92c0c5cef965497fa2922727c3a22a04","systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-11-03T08:46:15.6339323+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-11-03T08:46:15.6339323+00:00"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Updating"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5a55a3dca1344167b82bc63b77191f61","name":"testreg000002.5a55a3dca1344167b82bc63b77191f61","systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:47:00.5701709+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:47:00.5701709+00:00"},"properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Pending"},"provisioningState":"Updating"}}' headers: api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 2019-12-01-preview, 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/testreg000002/privateEndpointConnections/testreg000002.92c0c5cef965497fa2922727c3a22a04/operationStatuses/privateendpointconnections-7981fbd4-98a5-4fb5-8d27-a971974ec374?api-version=2019-12-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5a55a3dca1344167b82bc63b77191f61/operationStatuses/privateendpointconnections-cf9b0ec0-5d85-45a2-b8bf-124b468dc2c7?api-version=2019-12-01-preview cache-control: - no-cache content-length: - - '1030' + - '885' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:46:16 GMT + - Thu, 30 Dec 2021 23:47:00 GMT expires: - '-1' pragma: @@ -1583,7 +1747,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1197' status: code: 201 message: Created @@ -1601,23 +1765,25 @@ interactions: ParameterSetName: - -g --resource-name -n --description --type User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) AZURECLI/2.30.0 + - python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.31.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.92c0c5cef965497fa2922727c3a22a04?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5a55a3dca1344167b82bc63b77191f61?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.92c0c5cef965497fa2922727c3a22a04","name":"testreg000002.92c0c5cef965497fa2922727c3a22a04","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"somedescription"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5a55a3dca1344167b82bc63b77191f61","name":"testreg000002.5a55a3dca1344167b82bc63b77191f61","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"somedescription"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 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: - - '818' + - '673' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:46:29 GMT + - Thu, 30 Dec 2021 23:47:11 GMT expires: - '-1' pragma: @@ -1649,23 +1815,25 @@ interactions: ParameterSetName: - -g -n --type User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) AZURECLI/2.30.0 + - python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.31.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2019-12-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.0aedc992d4e1401a9059150db71d2e43","name":"testreg000002.0aedc992d4e1401a9059150db71d2e43","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}},{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.92c0c5cef965497fa2922727c3a22a04","name":"testreg000002.92c0c5cef965497fa2922727c3a22a04","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"somedescription"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5a55a3dca1344167b82bc63b77191f61","name":"testreg000002.5a55a3dca1344167b82bc63b77191f61","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000007"},"privateLinkServiceConnectionState":{"status":"Rejected","description":"somedescription"},"provisioningState":"Succeeded"}},{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309","name":"testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 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: - - '1649' + - '1359' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:46:33 GMT + - Thu, 30 Dec 2021 23:47:11 GMT expires: - '-1' pragma: @@ -1699,15 +1867,17 @@ interactions: ParameterSetName: - -g --resource-name -n --type -y User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) AZURECLI/2.30.0 + - python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.31.0 method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.92c0c5cef965497fa2922727c3a22a04?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.5a55a3dca1344167b82bc63b77191f61?api-version=2019-12-01-preview response: body: string: 'null' headers: api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 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: @@ -1715,11 +1885,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:46:37 GMT + - Thu, 30 Dec 2021 23:47:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centraluseuap/operationResults/privateendpointconnections-9b628551-5a89-462b-95e1-3ea0345c5a3c?api-version=2019-12-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centraluseuap/operationResults/privateendpointconnections-2c5c2c84-ce44-403a-9bd5-4520411bca3a?api-version=2019-12-01-preview pragma: - no-cache server: @@ -1747,23 +1917,25 @@ interactions: ParameterSetName: - -g -n --type User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) AZURECLI/2.30.0 + - python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.31.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections?api-version=2019-12-01-preview response: body: - string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.0aedc992d4e1401a9059150db71d2e43","name":"testreg000002.0aedc992d4e1401a9059150db71d2e43","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309","name":"testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}]}' headers: api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 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: - - '830' + - '685' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:47:09 GMT + - Thu, 30 Dec 2021 23:47:42 GMT expires: - '-1' pragma: @@ -1795,23 +1967,25 @@ interactions: ParameterSetName: - -g --resource-name -n --type User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) AZURECLI/2.30.0 + - python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.31.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.0aedc992d4e1401a9059150db71d2e43?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309?api-version=2019-12-01-preview response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.0aedc992d4e1401a9059150db71d2e43","name":"testreg000002.0aedc992d4e1401a9059150db71d2e43","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/privateEndpointConnections","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309","name":"testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309","properties":{"privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/privateEndpoints/priv_endpoint000005"},"privateLinkServiceConnectionState":{"status":"Approved","description":"somedescription"},"provisioningState":"Succeeded"}}' headers: api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 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: - - '818' + - '673' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:47:13 GMT + - Thu, 30 Dec 2021 23:47:44 GMT expires: - '-1' pragma: @@ -1845,15 +2019,17 @@ interactions: ParameterSetName: - -g --resource-name -n --type -y User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) AZURECLI/2.30.0 + - python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.31.0 method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.0aedc992d4e1401a9059150db71d2e43?api-version=2019-12-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateEndpointConnections/testreg000002.a3c8bf4658694b83aa97a4a4ac2e2309?api-version=2019-12-01-preview response: body: string: 'null' headers: api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview + - 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: @@ -1861,11 +2037,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Nov 2021 08:47:16 GMT + - Thu, 30 Dec 2021 23:47:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centraluseuap/operationResults/privateendpointconnections-063834e6-d86c-4fb9-862e-f08991bd3214?api-version=2019-12-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/locations/centraluseuap/operationResults/privateendpointconnections-6a63c4c5-1a97-4b12-945a-f87570cb659d?api-version=2019-12-01-preview pragma: - no-cache server: @@ -1875,7 +2051,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted diff --git a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_acr.yaml b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_acr.yaml index b30c1208f66..b4ab795e5c0 100644 --- a/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_acr.yaml +++ b/src/azure-cli/azure/cli/command_modules/network/tests/latest/recordings/test_private_link_resource_acr.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.29.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/resourcegroups/cli_test_sa_plr000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001","name":"cli_test_sa_plr000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-11T13:59:29Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001","name":"cli_test_sa_plr000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-12-30T23:48:33Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '320' content-type: - application/json; charset=utf-8 date: - - Mon, 11 Oct 2021 13:59:35 GMT + - Thu, 30 Dec 2021 23:48:23 GMT expires: - '-1' pragma: @@ -60,26 +60,26 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerregistry/8.1.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/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-10-11T13:59:42.8179551+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-11T13:59:42.8179551+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2021-10-11T13:59:42.8179551Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-10-11T13:59:44.6820997+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/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:48:24.3970477+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:48:24.3970477+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2021-12-30T23:48:24.3970477Z","provisioningState":"Creating","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T23:48:25.2636824+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/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-767de77b-2a9b-11ec-b641-f48e389cc17c?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-00a00bc2-69cb-11ec-b47c-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: - - '1362' + - '1287' content-type: - application/json; charset=utf-8 date: - - Mon, 11 Oct 2021 13:59:45 GMT + - Thu, 30 Dec 2021 23:48:24 GMT expires: - '-1' pragma: @@ -109,18 +109,18 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerregistry/8.1.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/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-767de77b-2a9b-11ec-b641-f48e389cc17c?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-00a00bc2-69cb-11ec-b47c-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/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-767de77b-2a9b-11ec-b641-f48e389cc17c?api-version=2021-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/operationStatuses/registries-00a00bc2-69cb-11ec-b47c-00155d249691?api-version=2021-08-01-preview cache-control: - no-cache content-length: @@ -128,7 +128,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Oct 2021 13:59:56 GMT + - Thu, 30 Dec 2021 23:48:34 GMT expires: - '-1' pragma: @@ -160,24 +160,24 @@ interactions: ParameterSetName: - --name --resource-group --sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerregistry/8.1.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/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002?api-version=2021-08-01-preview response: body: - string: '{"sku":{"name":"Premium","tier":"Premium"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"v-kaisun@microsoft.com","createdByType":"User","createdAt":"2021-10-11T13:59:42.8179551+00:00","lastModifiedBy":"v-kaisun@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-11T13:59:42.8179551+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2021-10-11T13:59:42.8179551Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-10-11T13:59:44.6820997+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/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002","name":"testreg000002","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:48:24.3970477+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:48:24.3970477+00:00"},"properties":{"loginServer":"testreg000002.azurecr.io","creationDate":"2021-12-30T23:48:24.3970477Z","provisioningState":"Succeeded","adminUserEnabled":false,"networkRuleSet":{"defaultAction":"Allow","virtualNetworkRules":[],"ipRules":[]},"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T23:48:25.2636824+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' + - '1288' content-type: - application/json; charset=utf-8 date: - - Mon, 11 Oct 2021 13:59:56 GMT + - Thu, 30 Dec 2021 23:48:34 GMT expires: - '-1' pragma: @@ -209,7 +209,8 @@ interactions: ParameterSetName: - --id User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) AZURECLI/2.29.0 + - python/3.8.2 (Linux-5.10.60.1-microsoft-standard-WSL2-x86_64-with-glibc2.29) + AZURECLI/2.31.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_sa_plr000001/providers/Microsoft.ContainerRegistry/registries/testreg000002/privateLinkResources?api-version=2019-12-01-preview response: @@ -221,11 +222,11 @@ interactions: cache-control: - no-cache content-length: - - '487' + - '426' content-type: - application/json; charset=utf-8 date: - - Mon, 11 Oct 2021 14:00:02 GMT + - Thu, 30 Dec 2021 23:48:37 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml index a6d57e7f42d..5bf39203db3 100644 --- a/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml +++ b/src/azure-cli/azure/cli/command_modules/resource/tests/latest/recordings/test_tag_update_by_patch.yaml @@ -13,7 +13,7 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/providers/Microsoft.RecoveryServices?api-version=2021-04-01 response: @@ -23,133 +23,133 @@ interactions: Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-05-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-05-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"}],"registrationState":"NotRegistered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '14116' + - '14528' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:18:41 GMT + - Thu, 30 Dec 2021 23:38:45 GMT expires: - '-1' pragma: @@ -181,53 +181,53 @@ interactions: ParameterSetName: - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-10-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2021-10-20T03%3A18%3A49.0585094Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"error":{"code":"MissingSubscriptionRegistration","message":"The subscription + is not registered to use namespace ''Microsoft.RecoveryServices''. See https://aka.ms/rps-not-found + for how to register subscriptions.","details":[{"code":"MissingSubscriptionRegistration","target":"Microsoft.RecoveryServices","message":"The + subscription is not registered to use namespace ''Microsoft.RecoveryServices''. + See https://aka.ms/rps-not-found for how to register subscriptions."}]}}' headers: cache-control: - no-cache content-length: - - '544' + - '469' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:18:50 GMT + - Thu, 30 Dec 2021 23:38:46 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '209' + x-ms-failure-cause: + - gateway status: - code: 201 - message: Created + code: 409 + message: Conflict - request: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate - CommandName: - - resource tag Connection: - keep-alive - ParameterSetName: - - --ids --tags + Content-Length: + - '0' User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2021-04-01 + - python-requests/2.26.0 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices/register?api-version=2016-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West @@ -235,181 +235,136 @@ interactions: Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-05-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-05-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"operations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"]},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"]},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"]},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"]},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"]},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2017-07-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"capabilities":"SupportsExtension"}],"registrationState":"Registering"}' headers: cache-control: - no-cache content-length: - - '14116' + - '12692' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:18:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.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/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-08-01 - response: - body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2021-10-20T03%3A18%3A49.0585094Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '544' - content-type: - - application/json - date: - - Wed, 20 Oct 2021 03:18:53 GMT + - Thu, 30 Dec 2021 23:38:47 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -418,58 +373,167 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' status: code: 200 message: OK - request: - body: '{"tags": {"cli-test": "test"}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate - CommandName: - - resource tag Connection: - keep-alive - Content-Length: - - '30' - Content-Type: - - application/json - ParameterSetName: - - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.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/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-08-01 + - python-requests/2.26.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2016-02-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2021-10-20T03%3A18%3A56.8320922Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"operations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"]},{"resourceType":"locations/backupCrrJobs","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrJob","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupAadProperties","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"backupProtectedItems","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2017-07-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"capabilities":"SupportsExtension"}],"registrationState":"Registering"}' headers: cache-control: - no-cache content-length: - - '571' + - '12692' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:18:59 GMT + - Thu, 30 Dec 2021 23:38:57 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '209' status: code: 200 message: OK @@ -477,19 +541,15 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate - CommandName: - - resource tag Connection: - keep-alive - ParameterSetName: - - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - python-requests/2.26.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2016-02-01 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West @@ -497,133 +557,132 @@ interactions: Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-05-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-05-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"operations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"]},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"]},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"]},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"]},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"]},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2017-07-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"capabilities":"SupportsExtension"}],"registrationState":"Registering"}' headers: cache-control: - no-cache content-length: - - '14116' + - '12692' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:19:00 GMT + - Thu, 30 Dec 2021 23:39:06 GMT expires: - '-1' pragma: @@ -641,97 +700,158 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate - CommandName: - - resource tag Connection: - keep-alive - ParameterSetName: - - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - python-requests/2.26.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2016-02-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2021-10-20T03%3A18%3A56.8320922Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' - headers: - cache-control: - - no-cache - content-length: - - '571' - content-type: - - application/json - date: - - Wed, 20 Oct 2021 03:19:02 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-IIS/10.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"tags": {}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - Content-Length: - - '12' - Content-Type: - - application/json - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.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/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-08-01 - response: - body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2021-10-20T03%3A19%3A04.4287763Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"operations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"]},{"resourceType":"locations/backupCrrJobs","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrJob","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupAadProperties","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"backupProtectedItems","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2017-07-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"capabilities":"SupportsExtension"}],"registrationState":"Registering"}' headers: cache-control: - no-cache content-length: - - '554' + - '12692' content-type: - - application/json + - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:19:07 GMT + - Thu, 30 Dec 2021 23:39:16 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '209' status: code: 200 message: OK @@ -739,192 +859,313 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate - CommandName: - - resource tag Connection: - keep-alive - ParameterSetName: - - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - python-requests/2.26.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001?api-version=2021-04-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-20T03:16:35Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Oct 2021 03:19:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"tags": {"cli-test": "test"}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - resource tag - Connection: - - keep-alive - Content-Length: - - '30' - Content-Type: - - application/json - ParameterSetName: - - --ids --tags - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.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/cli_test_tag_update_by_patch000001?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2016-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"operations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"]},{"resourceType":"locations/backupCrrJobs","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrJob","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupAadProperties","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"backupProtectedItems","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2017-07-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"capabilities":"SupportsExtension"}],"registrationState":"Registering"}' headers: cache-control: - no-cache content-length: - - '374' + - '12692' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:19:10 GMT + - Thu, 30 Dec 2021 23:39:26 GMT expires: - '-1' pragma: - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK - request: - body: '{"location": "westus", "sku": {"name": "Standard"}, "properties": {"adminUserEnabled": - false, "anonymousPullEnabled": false}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate - CommandName: - - acr create Connection: - keep-alive - Content-Length: - - '125' - Content-Type: - - application/json - ParameterSetName: - - -n -g -l --sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerregistry/8.1.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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2021-06-01-preview + - python-requests/2.26.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2016-02-01 response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-10-20T03:19:15.6879483+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-20T03:19:15.6879483+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2021-10-20T03:19:15.6879483Z","provisioningState":"Creating","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-10-20T03:19:18.5067077+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 - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-37f17765-3154-11ec-bf6a-00155ddfd498?api-version=2021-06-01-preview - cache-control: - - no-cache - content-length: - - '1281' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Oct 2021 03:19:18 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerregistry/8.1.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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-37f17765-3154-11ec-bf6a-00155ddfd498?api-version=2021-06-01-preview - response: - body: - string: '{"status":"Succeeded"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"operations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"]},{"resourceType":"locations/backupCrrJobs","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrJob","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupAadProperties","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"backupProtectedItems","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2017-07-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"capabilities":"SupportsExtension"}],"registrationState":"Registering"}' headers: - api-supported-versions: - - 2021-06-01-preview - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-37f17765-3154-11ec-bf6a-00155ddfd498?api-version=2021-06-01-preview cache-control: - no-cache content-length: - - '22' + - '12692' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:19:28 GMT + - Thu, 30 Dec 2021 23:39:37 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: @@ -939,77 +1180,145 @@ interactions: - '*/*' Accept-Encoding: - gzip, deflate - CommandName: - - acr create - Connection: - - keep-alive - ParameterSetName: - - -n -g -l --sku - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerregistry/8.1.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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2021-06-01-preview - response: - body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-10-20T03:19:15.6879483+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-20T03:19:15.6879483+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2021-10-20T03:19:15.6879483Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-10-20T03:19:18.5067077+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 - cache-control: - - no-cache - content-length: - - '1282' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Oct 2021 03:19:29 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - acr webhook create Connection: - keep-alive - ParameterSetName: - - -n -r --uri --actions User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - python-requests/2.26.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.ContainerRegistry%2Fregistries%27&api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2016-02-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-10-20T03:19:15.6879483Z","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-20T03:19:15.6879483Z"}}]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"operations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"]},{"resourceType":"locations/backupCrrJobs","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrJob","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupAadProperties","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"backupProtectedItems","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2017-07-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"capabilities":"SupportsExtension"}],"registrationState":"Registering"}' headers: cache-control: - no-cache content-length: - - '619' + - '12692' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:19:33 GMT + - Thu, 30 Dec 2021 23:39:47 GMT expires: - '-1' pragma: @@ -1027,104 +1336,370 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate - CommandName: - - acr webhook create Connection: - keep-alive - ParameterSetName: - - -n -r --uri --actions User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerregistry/8.1.0 Python/3.8.1 - (Windows-10-10.0.19041-SP0) + - python-requests/2.26.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices?api-version=2016-02-01 response: body: - string: '{"sku":{"name":"Standard","tier":"Standard"},"type":"Microsoft.ContainerRegistry/registries","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-10-20T03:19:15.6879483+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-20T03:19:15.6879483+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2021-10-20T03:19:15.6879483Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-10-20T03:19:18.5067077+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 - cache-control: - - no-cache - content-length: - - '1282' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Oct 2021 03:19:36 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: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity"},{"resourceType":"operations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"]},{"resourceType":"locations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"]},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"]},{"resourceType":"locations/checkNameAvailability","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"]},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"]},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"]},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"]},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"]},{"resourceType":"locations/backupCrrJobs","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrJob","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupAadProperties","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"]},{"resourceType":"backupProtectedItems","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2017-07-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"capabilities":"SupportsExtension"}],"registrationState":"Registered"}' + headers: + cache-control: + - no-cache + content-length: + - '12691' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:39:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: code: 200 message: OK - request: - body: '{"location": "westus", "properties": {"serviceUri": "http://www.microsoft.com", - "status": "enabled", "actions": ["push"]}}' + body: '{"location": "westus", "properties": {}, "sku": {"name": "Standard"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - acr webhook create + - resource create Connection: - keep-alive Content-Length: - - '122' + - '69' Content-Type: - application/json ParameterSetName: - - -n -r --uri --actions + - -g -n --resource-type --is-full-object -p User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-containerregistry/8.1.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: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2021-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-10-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"zhoxing@microsoft.com","createdByType":"User","createdAt":"2021-10-20T03:19:40.7467474+00:00","lastModifiedBy":"zhoxing@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-10-20T03:19:40.7467474+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2021-12-30T23%3A39%3A59.4907714Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: - api-supported-versions: - - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview cache-control: - no-cache content-length: - - '694' + - '467' content-type: - - application/json; charset=utf-8 + - application/json date: - - Wed, 20 Oct 2021 03:19:42 GMT + - Thu, 30 Dec 2021 23:39:59 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-HTTPAPI/2.0 + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '208' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - 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/providers/Microsoft.RecoveryServices?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '14525' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:39:59 GMT + expires: + - '-1' + pragma: + - no-cache strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -1142,216 +1717,984 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/providers/Microsoft.ContainerRegistry?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"737d58c1-397a-46e7-9d12-7d8c830883c2","roleDefinitionId":"716bb53a-0390-4428-bf41-b1bedde7d751"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","Korea Central","France - Central","South Africa North","UAE North","East Asia","Japan East","Japan - West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/connectedRegistries","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West - US","East US","South Central US","West Europe","North Europe","UK South","UK - West","Australia East","Australia Southeast","Central India","East Asia","Japan - East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada - Central","Central US","East US 2","North Central US","West Central US","West - US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South - Central US","West Central US","East US","West Europe","West US","Japan East","North - Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil - South","Australia East","Central India","Korea Central","France Central","South - Africa North","UAE North","Central US","Canada East","Canada Central","UK - South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland - North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West - US","East US","South Central US","West Europe","Switzerland North","North - Europe","UK South","UK West","Australia East","Australia Southeast","Central - India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil - South","Canada East","Canada Central","Central US","East US 2","North Central - US","West Central US","West US 2","Korea Central","France Central","South - Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil - Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"defaultApiVersion":"2019-06-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East - US","West Europe","West US 2","South Central US","Canada Central","Central - US","East Asia","East US 2","North Europe","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"defaultApiVersion":"2019-06-01-preview","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","West US 2","South Central US","Central US","East Asia","East US 2","East - US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2019-04-01","capabilities":"CrossResourceGroupResourceMove, + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2021-12-30T23%3A39%3A59.4907714Z''\"","properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '467' + content-type: + - application/json + date: + - Thu, 30 Dec 2021 23:39:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"tags": {"cli-test": "test"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + Content-Length: + - '30' + Content-Type: + - application/json + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.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: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-10-01 + response: + body: + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2021-12-30T23%3A40%3A01.6725152Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '494' + content-type: + - application/json + date: + - Thu, 30 Dec 2021 23:40:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.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/providers/Microsoft.RecoveryServices?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.RecoveryServices","namespace":"Microsoft.RecoveryServices","authorizations":[{"applicationId":"262044b1-e2ce-469f-a196-69ab7ada62d3","roleDefinitionId":"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC"},{"applicationId":"b8340c3b-9267-498f-b21a-15d5547fd85e","roleDefinitionId":"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6"},{"applicationId":"3b2fa68d-a091-48c9-95be-88d572e08fb7","roleDefinitionId":"47d68fae-99c7-4c10-b9db-2316116a061e"},{"applicationId":"9bdab391-7bbe-42e8-8132-e4491dc29cc0","roleDefinitionId":"0383f7f5-023d-4379-b2c7-9ef786459969"}],"resourceTypes":[{"resourceType":"vaults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/getBuildSourceUploadUrl","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North - Europe","Southeast Asia","South India","UK South","UK West","West US","West - Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland - North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway - East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","East US 2 EUAP"],"apiVersions":["2018-02-01-preview"],"capabilities":"None"},{"resourceType":"registries/queueBuild","locations":["East - US","West Europe","West US 2","South Central US","Australia East","Australia - Southeast","Brazil South","Canada Central","Canada East","Central India","Central - US","East Asia","East US 2","Japan East","Japan West","North Central US","North + SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast + Asia","North Central US","South Central US","Japan East","Japan West","Australia + East","Australia Southeast","Central US","East US 2","Central India","South + India","West India","West Central US","Canada Central","Canada East","West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '14525' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:01 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - 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/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-10-01 + response: + body: + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2021-12-30T23%3A40%3A01.6725152Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '494' + content-type: + - application/json + date: + - Thu, 30 Dec 2021 23:40:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + Content-Length: + - '12' + Content-Type: + - application/json + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.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: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-10-01 + response: + body: + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2021-12-30T23%3A40%3A02.8728242Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + headers: + cache-control: + - no-cache + content-length: + - '477' + content-type: + - application/json + date: + - Thu, 30 Dec 2021 23:40:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '209' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.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/cli_test_tag_update_by_patch000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-12-30T23:38:53Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '346' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"tags": {"cli-test": "test"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + Content-Length: + - '30' + Content-Type: + - application/json + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.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: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:02 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "sku": {"name": "Standard"}, "properties": {"adminUserEnabled": + false, "anonymousPullEnabled": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + Content-Length: + - '125' + Content-Type: + - application/json + ParameterSetName: + - -n -g -l --sku + 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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:40:04.4685964+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:40:04.4685964+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2021-12-30T23:40:04.4685964Z","provisioningState":"Creating","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T23:40:05.633585+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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-d6bab042-69c9-11ec-bd94-00155d249691?api-version=2021-08-01-preview + cache-control: + - no-cache + content-length: + - '1217' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --sku + 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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-d6bab042-69c9-11ec-bd94-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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/operationStatuses/registries-d6bab042-69c9-11ec-bd94-00155d249691?api-version=2021-08-01-preview + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - acr create + Connection: + - keep-alive + ParameterSetName: + - -n -g -l --sku + 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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:40:04.4685964+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:40:04.4685964+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2021-12-30T23:40:04.4685964Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T23:40:05.633585+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: + - '1218' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr webhook create + Connection: + - keep-alive + ParameterSetName: + - -n -r --uri --actions + User-Agent: + - 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/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:41.0073302Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Standard","tier":"Standard"},"location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:40:04.4685964Z","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:40:04.4685964Z"}},{"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: + - '12477' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr webhook create + Connection: + - keep-alive + ParameterSetName: + - -n -r --uri --actions + 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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003?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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003","name":"clireg000003","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:40:04.4685964+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:40:04.4685964+00:00"},"properties":{"loginServer":"clireg000003.azurecr.io","creationDate":"2021-12-30T23:40:04.4685964Z","provisioningState":"Succeeded","adminUserEnabled":false,"policies":{"quarantinePolicy":{"status":"disabled"},"trustPolicy":{"type":"Notary","status":"disabled"},"retentionPolicy":{"days":7,"lastUpdatedTime":"2021-12-30T23:40:05.633585+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: + - '1218' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"serviceUri": "http://www.microsoft.com", + "status": "enabled", "actions": ["push"]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - acr webhook create + Connection: + - keep-alive + Content-Length: + - '122' + Content-Type: + - application/json + ParameterSetName: + - -n -r --uri --actions + 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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2021-08-01-preview + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:40:17.2653538+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:40:17.2653538+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: + - '647' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.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/providers/Microsoft.ContainerRegistry?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry","namespace":"Microsoft.ContainerRegistry","authorizations":[{"applicationId":"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26","roleDefinitionId":"78e18383-93eb-418a-9887-bc9271046576"},{"applicationId":"737d58c1-397a-46e7-9d12-7d8c830883c2","roleDefinitionId":"716bb53a-0390-4428-bf41-b1bedde7d751"},{"applicationId":"918d0db8-4a38-4938-93c1-9313bdfe0272","roleDefinitionId":"dcd2d2c9-3f80-4d72-95a8-2593111b4b12"},{"applicationId":"d2fa1650-4805-4a83-bcb9-cf41fe63539c","roleDefinitionId":"c15f8dab-b103-4f8d-9afb-fbe4b8e98de2"},{"applicationId":"a4c95b9e-3994-40cc-8953-5dc66d48348d","roleDefinitionId":"dc88c655-90fa-48d9-8d51-003cc8738508"},{"applicationId":"62c559cd-db0c-4da0-bab2-972528c65d42","roleDefinitionId":"437b639a-6d74-491d-959f-d172e8c5c1fc"},{"applicationId":"a3747411-ce7c-4888-9ddc-3a230786ca19","roleDefinitionId":"b29ead14-d6d9-4957-bdf1-494b07fe2e87"},{"applicationId":"76c92352-c057-4cc2-9b1e-f34c32bc58bd"}],"resourceTypes":[{"resourceType":"registries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","Korea Central","France + Central","South Africa North","UAE North","East Asia","Japan East","Japan + West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/connectedRegistries","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + US","East US","South Central US","West Europe","North Europe","UK South","UK + West","Australia East","Australia Southeast","Central India","East Asia","Japan + East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada + Central","Central US","East US 2","North Central US","West Central US","West + US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South + Central US","West Central US","East US","West Europe","West US","Japan East","North + Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil + South","Australia East","Central India","Korea Central","France Central","South + Africa North","UAE North","Central US","Canada East","Canada Central","UK + South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland + North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + US","East US","South Central US","West Europe","Switzerland North","North + Europe","UK South","UK West","Australia East","Australia Southeast","Central + India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil + South","Canada East","Canada Central","Central US","East US 2","North Central + US","West Central US","West US 2","Korea Central","France Central","South + Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil + Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/scheduleRun","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/taskRuns","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"defaultApiVersion":"2019-06-01-preview","capabilities":"None"},{"resourceType":"registries/taskRuns/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East + US","West Europe","West US 2","South Central US","Canada Central","Central + US","East US 2","North Europe","Central US EUAP","East US 2 EUAP","Australia + East","Australia Southeast","Brazil South","Canada East","Central India","East + Asia","Japan East","Japan West","North Central US","Southeast Asia","South + India","UK South","UK West","West US","West Central US","France Central","Korea + Central","South Africa North","UAE North","Switzerland North","Switzerland + West","UAE Central","Brazil Southeast","Germany West Central","Norway East","Korea + South","West US 3","Norway West","Sweden Central","Sweden South","Jio India + West","Jio India Central","Australia Central 2"],"apiVersions":["2019-06-01-preview"],"defaultApiVersion":"2019-06-01-preview","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East + US","West US 2","South Central US","Central US","East US 2","Central US EUAP","East + US 2 EUAP","West Europe","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Central India","East Asia","Japan East","Japan West","North + Central US","North Europe","Southeast Asia","South India","UK South","UK West","West + US","West Central US","France Central","Korea Central","South Africa North","UAE + North","Switzerland North","Switzerland West","UAE Central","Brazil Southeast","Germany + West Central","Norway East","Korea South","West US 3","Norway West","Sweden + Central","Sweden South","Jio India West","Jio India Central","Australia Central + 2"],"apiVersions":["2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/runs/cancel","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/tasks","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview","2019-04-01","2018-09-01"],"defaultApiVersion":"2019-04-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"},{"resourceType":"registries/tasks/listDetails","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview","2019-04-01","2018-09-01"],"capabilities":"None"},{"resourceType":"registries/getBuildSourceUploadUrl","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North + Europe","Southeast Asia","South India","UK South","UK West","West US","West + Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland + North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway + East","Korea South","West US 3","Norway West","Sweden Central","Jio India + West","Jio India Central","East US 2 EUAP"],"apiVersions":["2018-02-01-preview"],"capabilities":"None"},{"resourceType":"registries/queueBuild","locations":["East + US","West Europe","West US 2","South Central US","Australia East","Australia + Southeast","Brazil South","Canada Central","Canada East","Central India","Central + US","East Asia","East US 2","Japan East","Japan West","North Central US","North Europe","Southeast Asia","South India","UK South","UK West","West US","West Central US","France Central","Korea Central","South Africa North","UAE North","Switzerland North","Switzerland West","UAE Central","Brazil Southeast","Germany West Central","Norway @@ -1421,7 +2764,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil @@ -1430,7 +2773,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil @@ -1439,7 +2782,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","South Africa North","UAE @@ -1447,7 +2790,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","South Africa North","UAE @@ -1455,7 +2798,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/setupAuth","locations":["East + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/setupAuth","locations":["East US","West Europe","West US 2","South Central US","Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US 2","Japan East","Japan West","North Central US","North @@ -1479,7 +2822,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","South Africa North","UAE @@ -1497,7 +2840,7 @@ interactions: Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South Central US","West US","East US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","South Africa North","UAE North","France Central","East Asia","Japan East","Japan @@ -1505,7 +2848,7 @@ interactions: Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","South Africa North","UAE @@ -1513,7 +2856,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","South Africa North","UAE North","France Central","East Asia","Japan East","Japan @@ -1548,7 +2891,7 @@ interactions: Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan @@ -1556,7 +2899,7 @@ interactions: Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-06-01-preview","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South + India West","Jio India Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-06-01-preview","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South Central US","East US","West US","Central US","East US 2","North Central US","West Central US","West US 2","Brazil South","Canada East","Canada Central","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central @@ -1565,16 +2908,16 @@ interactions: Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Central US EUAP","East US - 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01","2017-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01","2017-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '42069' + - '43961' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:19:45 GMT + - Thu, 30 Dec 2021 23:40:17 GMT expires: - '-1' pragma: @@ -1602,23 +2945,24 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2021-09-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:40:17.2653538+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:40:17.2653538+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - - '2019-05-01' + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: - - '450' + - '647' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:19:46 GMT + - Thu, 30 Dec 2021 23:40:17 GMT expires: - '-1' pragma: @@ -1654,23 +2998,24 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2021-09-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:40:17.2653538+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:40:17.9361375+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - - '2019-05-01' + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: - - '467' + - '664' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:19:50 GMT + - Thu, 30 Dec 2021 23:40:17 GMT expires: - '-1' pragma: @@ -1686,7 +3031,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 200 message: OK @@ -1704,7 +3049,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/providers/Microsoft.ContainerRegistry?api-version=2021-04-01 response: @@ -1717,7 +3062,7 @@ interactions: Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + India West","Jio India Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"registries/connectedRegistries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK @@ -1727,7 +3072,7 @@ interactions: US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada @@ -1735,7 +3080,7 @@ interactions: US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada @@ -1743,7 +3088,7 @@ interactions: US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada @@ -1751,7 +3096,7 @@ interactions: US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada @@ -1759,7 +3104,7 @@ interactions: US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -1767,7 +3112,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -1775,7 +3120,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -1783,7 +3128,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -1791,7 +3136,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South Central US","West Central US","East US","West Europe","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","France Central","South @@ -1799,7 +3144,7 @@ interactions: South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -1807,7 +3152,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -1815,7 +3160,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -1823,7 +3168,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East US","West Europe","West US 2","South Central US","Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US 2","Japan East","Japan West","North Central US","North @@ -1865,10 +3210,24 @@ interactions: East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East US","West Europe","West US 2","South Central US","Canada Central","Central - US","East Asia","East US 2","North Europe","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"defaultApiVersion":"2019-06-01-preview","capabilities":"CrossResourceGroupResourceMove, + US","East US 2","North Europe","Central US EUAP","East US 2 EUAP","Australia + East","Australia Southeast","Brazil South","Canada East","Central India","East + Asia","Japan East","Japan West","North Central US","Southeast Asia","South + India","UK South","UK West","West US","West Central US","France Central","Korea + Central","South Africa North","UAE North","Switzerland North","Switzerland + West","UAE Central","Brazil Southeast","Germany West Central","Norway East","Korea + South","West US 3","Norway West","Sweden Central","Sweden South","Jio India + West","Jio India Central","Australia Central 2"],"apiVersions":["2019-06-01-preview"],"defaultApiVersion":"2019-06-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","West US 2","South Central US","Central US","East Asia","East US 2","East - US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East + US","West US 2","South Central US","Central US","East US 2","Central US EUAP","East + US 2 EUAP","West Europe","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Central India","East Asia","Japan East","Japan West","North + Central US","North Europe","Southeast Asia","South India","UK South","UK West","West + US","West Central US","France Central","Korea Central","South Africa North","UAE + North","Switzerland North","Switzerland West","UAE Central","Brazil Southeast","Germany + West Central","Norway East","Korea South","West US 3","Norway West","Sweden + Central","Sweden South","Jio India West","Jio India Central","Australia Central + 2"],"apiVersions":["2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East US","West Europe","West US 2","South Central US","Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US 2","Japan East","Japan West","North Central US","North @@ -1983,7 +3342,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil @@ -1992,7 +3351,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil @@ -2001,7 +3360,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","South Africa North","UAE @@ -2009,7 +3368,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","South Africa North","UAE @@ -2017,7 +3376,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/setupAuth","locations":["East + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/setupAuth","locations":["East US","West Europe","West US 2","South Central US","Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US 2","Japan East","Japan West","North Central US","North @@ -2041,7 +3400,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","South Africa North","UAE @@ -2059,7 +3418,7 @@ interactions: Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South Central US","West US","East US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","South Africa North","UAE North","France Central","East Asia","Japan East","Japan @@ -2067,7 +3426,7 @@ interactions: Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","South Africa North","UAE @@ -2075,7 +3434,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","South Africa North","UAE North","France Central","East Asia","Japan East","Japan @@ -2110,7 +3469,7 @@ interactions: Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan @@ -2118,7 +3477,7 @@ interactions: Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-06-01-preview","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South + India West","Jio India Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-06-01-preview","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South Central US","East US","West US","Central US","East US 2","North Central US","West Central US","West US 2","Brazil South","Canada East","Canada Central","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central @@ -2127,16 +3486,690 @@ interactions: Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Central US EUAP","East US - 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01","2017-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01","2017-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + headers: + cache-control: + - no-cache + content-length: + - '43961' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:18 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - 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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2021-09-01 + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:40:17.2653538+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:40:17.9361375+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: + - '664' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"tags": {}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + Content-Length: + - '12' + Content-Type: + - application/json + ParameterSetName: + - --ids --tags + User-Agent: + - AZURECLI/2.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: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2021-09-01 + response: + body: + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:40:17.2653538+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:40:18.6141138+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: + - '647' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - container create + Connection: + - keep-alive + ParameterSetName: + - -g -n --image + User-Agent: + - 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/cli_test_tag_update_by_patch000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '292' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "tags": {}, "properties": {"containers": [{"name": + "clicontainer000005", "properties": {"image": "nginx:latest", "resources": {"requests": + {"memoryInGB": 1.5, "cpu": 1.0}}}}], "restartPolicy": "Always", "osType": "Linux"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - container create + Connection: + - keep-alive + Content-Length: + - '245' + Content-Type: + - application/json + ParameterSetName: + - -g -n --image + User-Agent: + - AZURECLI/2.31.0 azsdk-python-mgmt-containerinstance/9.1.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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2021-09-01 + response: + body: + string: '{"error":{"code":"MissingSubscriptionRegistration","message":"The subscription + is not registered to use namespace ''Microsoft.ContainerInstance''. See https://aka.ms/rps-not-found + for how to register subscriptions.","details":[{"code":"MissingSubscriptionRegistration","target":"Microsoft.ContainerInstance","message":"The + subscription is not registered to use namespace ''Microsoft.ContainerInstance''. + See https://aka.ms/rps-not-found for how to register subscriptions."}]}}' + headers: + cache-control: + - no-cache + content-length: + - '472' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:19 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 409 + message: Conflict +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python-requests/2.26.0 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/register?api-version=2016-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"serviceAssociationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/cachedImages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"Registering"}' + headers: + cache-control: + - no-cache + content-length: + - '7442' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2016-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"serviceAssociationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/cachedImages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"Registering"}' + headers: + cache-control: + - no-cache + content-length: + - '7442' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:30 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2016-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"serviceAssociationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/cachedImages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"Registering"}' + headers: + cache-control: + - no-cache + content-length: + - '7442' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2016-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"serviceAssociationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/cachedImages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"Registering"}' + headers: + cache-control: + - no-cache + content-length: + - '7442' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:40:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2016-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"serviceAssociationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/cachedImages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"Registering"}' headers: cache-control: - no-cache content-length: - - '42069' + - '7442' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:19:53 GMT + - Thu, 30 Dec 2021 23:41:00 GMT expires: - '-1' pragma: @@ -2154,43 +4187,277 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2016-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"serviceAssociationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/cachedImages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"Registering"}' + headers: + cache-control: + - no-cache + content-length: + - '7442' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:41:10 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python-requests/2.26.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2016-02-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"serviceAssociationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/cachedImages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"Registering"}' + headers: + cache-control: + - no-cache + content-length: + - '7442' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:41:20 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' Accept-Encoding: - gzip, deflate - CommandName: - - resource tag Connection: - keep-alive - ParameterSetName: - - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - python-requests/2.26.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2016-02-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"serviceAssociationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/cachedImages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"Registering"}' headers: - api-supported-versions: - - '2019-05-01' cache-control: - no-cache content-length: - - '467' + - '7442' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:19:54 GMT + - Thu, 30 Dec 2021 23:41:31 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: @@ -2199,56 +4466,96 @@ interactions: code: 200 message: OK - request: - body: '{"tags": {}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate - CommandName: - - resource tag Connection: - keep-alive - Content-Length: - - '12' - Content-Type: - - application/json - ParameterSetName: - - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2019-05-01 + - python-requests/2.26.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2016-02-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"serviceAssociationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/cachedImages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"Registering"}' headers: - api-supported-versions: - - '2019-05-01' cache-control: - no-cache content-length: - - '450' + - '7442' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:19:58 GMT + - Thu, 30 Dec 2021 23:41: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: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' status: code: 200 message: OK @@ -2256,31 +4563,83 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate - CommandName: - - container create Connection: - keep-alive - ParameterSetName: - - -g -n --image User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - python-requests/2.26.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_tag_update_by_patch000001?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance?api-version=2016-02-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001","name":"cli_test_tag_update_by_patch000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance","namespace":"Microsoft.ContainerInstance","authorizations":[{"applicationId":"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9","roleDefinitionId":"3c60422b-a83a-428d-9830-22609c77aa6c"}],"resourceTypes":[{"resourceType":"containerGroups","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"serviceAssociationLinks","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/capabilities","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/usages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operations","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/operationresults","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"operations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/cachedImages","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + East","Australia Southeast","Brazil South","Canada Central","Canada East","Central + India","Central US","East Asia","East US","East US 2","France Central","Germany + West Central","Japan East","Japan West","Jio India West","Korea Central","North + Central US","North Europe","Norway East","South Africa North","South Central + US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE + North","UK South","UK West","West Central US","West Europe","West US","West + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"]}],"registrationState":"Registered"}' headers: cache-control: - no-cache content-length: - - '374' + - '7441' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:20:00 GMT + - Thu, 30 Dec 2021 23:41:51 GMT expires: - '-1' pragma: @@ -2308,13 +4667,13 @@ interactions: Connection: - keep-alive Content-Length: - - '243' + - '245' Content-Type: - application/json ParameterSetName: - -g -n --image User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-containerinstance/9.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-mgmt-containerinstance/9.1.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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2021-09-01 response: @@ -2322,15 +4681,15 @@ interactions: string: '{"properties":{"sku":"Standard","provisioningState":"Pending","containers":[{"name":"clicontainer000005","properties":{"image":"nginx:latest","ports":[],"environmentVariables":[],"resources":{"requests":{"memoryInGB":1.5,"cpu":1.0}}}}],"initContainers":[],"restartPolicy":"Always","osType":"Linux","instanceView":{"events":[],"state":"Pending"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/9237960d-347c-49b2-a715-2623083ec133?api-version=2018-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/35c3ca89-16c1-4589-91d5-44e7dab52225?api-version=2018-06-01 cache-control: - no-cache content-length: - - '674' + - '639' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:20:10 GMT + - Thu, 30 Dec 2021 23:41:53 GMT expires: - '-1' pragma: @@ -2344,7 +4703,7 @@ interactions: x-ms-ratelimit-remaining-subscription-resource-requests-pt5m: - '99' x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -2362,23 +4721,21 @@ interactions: ParameterSetName: - -g -n --image User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-containerinstance/9.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-mgmt-containerinstance/9.1.0 Python/3.8.2 (Linux-5.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.ContainerInstance/locations/westus/operations/9237960d-347c-49b2-a715-2623083ec133?api-version=2018-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerInstance/locations/westus/operations/35c3ca89-16c1-4589-91d5-44e7dab52225?api-version=2018-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","status":"Succeeded","startTime":"2021-10-20T03:20:09.7048022Z","properties":{"events":[{"count":1,"firstTimestamp":"2021-10-20T03:20:13Z","lastTimestamp":"2021-10-20T03:20:13Z","name":"Pulling","message":"pulling - image \"nginx@sha256:7250923ba3543110040462388756ef099331822c6172a050b12c7a38361ea46f\"","type":"Normal"},{"count":1,"firstTimestamp":"2021-10-20T03:20:21Z","lastTimestamp":"2021-10-20T03:20:21Z","name":"Pulled","message":"Successfully - pulled image \"nginx@sha256:7250923ba3543110040462388756ef099331822c6172a050b12c7a38361ea46f\"","type":"Normal"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","status":"Succeeded","startTime":"2021-12-30T23:41:53.666285Z","properties":{"events":[]}}' headers: cache-control: - no-cache content-length: - - '787' + - '273' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:20:40 GMT + - Thu, 30 Dec 2021 23:42:23 GMT expires: - '-1' pragma: @@ -2408,24 +4765,21 @@ interactions: ParameterSetName: - -g -n --image User-Agent: - - AZURECLI/2.29.0 azsdk-python-mgmt-containerinstance/9.1.0 Python/3.8.1 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.31.0 azsdk-python-mgmt-containerinstance/9.1.0 Python/3.8.2 (Linux-5.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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2021-09-01 response: body: - string: '{"properties":{"sku":"Standard","provisioningState":"Succeeded","containers":[{"name":"clicontainer000005","properties":{"image":"nginx:latest","ports":[],"environmentVariables":[],"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2021-10-20T03:20:27.792Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2021-10-20T03:20:13Z","lastTimestamp":"2021-10-20T03:20:13Z","name":"Pulling","message":"pulling - image \"nginx@sha256:7250923ba3543110040462388756ef099331822c6172a050b12c7a38361ea46f\"","type":"Normal"},{"count":1,"firstTimestamp":"2021-10-20T03:20:21Z","lastTimestamp":"2021-10-20T03:20:21Z","name":"Pulled","message":"Successfully - pulled image \"nginx@sha256:7250923ba3543110040462388756ef099331822c6172a050b12c7a38361ea46f\"","type":"Normal"},{"count":1,"firstTimestamp":"2021-10-20T03:20:27Z","lastTimestamp":"2021-10-20T03:20:27Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.5,"cpu":1.0}}}}],"initContainers":[],"restartPolicy":"Always","osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + string: '{"properties":{"sku":"Standard","provisioningState":"Succeeded","containers":[{"name":"clicontainer000005","properties":{"image":"nginx:latest","ports":[],"environmentVariables":[],"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2021-12-30T23:42:09.062Z","detailStatus":""}},"resources":{"requests":{"memoryInGB":1.5,"cpu":1.0}}}}],"initContainers":[],"restartPolicy":"Always","osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' headers: cache-control: - no-cache content-length: - - '1442' + - '767' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:20:41 GMT + - Thu, 30 Dec 2021 23:42:23 GMT expires: - '-1' pragma: @@ -2455,7 +4809,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/providers/Microsoft.ContainerInstance?api-version=2021-04-01 response: @@ -2467,7 +4821,7 @@ interactions: Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SystemAssignedResourceIdentity, + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany @@ -2475,49 +4829,49 @@ interactions: Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache @@ -2526,7 +4880,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:20:43 GMT + - Thu, 30 Dec 2021 23:42:24 GMT expires: - '-1' pragma: @@ -2554,24 +4908,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2021-09-01 response: body: - string: '{"properties":{"sku":"Standard","provisioningState":"Succeeded","containers":[{"name":"clicontainer000005","properties":{"image":"nginx:latest","ports":[],"environmentVariables":[],"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2021-10-20T03:20:27.792Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2021-10-20T03:20:13Z","lastTimestamp":"2021-10-20T03:20:13Z","name":"Pulling","message":"pulling - image \"nginx@sha256:7250923ba3543110040462388756ef099331822c6172a050b12c7a38361ea46f\"","type":"Normal"},{"count":1,"firstTimestamp":"2021-10-20T03:20:21Z","lastTimestamp":"2021-10-20T03:20:21Z","name":"Pulled","message":"Successfully - pulled image \"nginx@sha256:7250923ba3543110040462388756ef099331822c6172a050b12c7a38361ea46f\"","type":"Normal"},{"count":1,"firstTimestamp":"2021-10-20T03:20:27Z","lastTimestamp":"2021-10-20T03:20:27Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.5,"cpu":1.0}}}}],"initContainers":[],"restartPolicy":"Always","osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + string: '{"properties":{"sku":"Standard","provisioningState":"Succeeded","containers":[{"name":"clicontainer000005","properties":{"image":"nginx:latest","ports":[],"environmentVariables":[],"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2021-12-30T23:42:09.062Z","detailStatus":""}},"resources":{"requests":{"memoryInGB":1.5,"cpu":1.0}}}}],"initContainers":[],"restartPolicy":"Always","osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' headers: cache-control: - no-cache content-length: - - '1442' + - '767' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:20:44 GMT + - Thu, 30 Dec 2021 23:42:24 GMT expires: - '-1' pragma: @@ -2605,24 +4956,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2021-09-01 response: body: - string: '{"properties":{"sku":"Standard","provisioningState":"Succeeded","containers":[{"name":"clicontainer000005","properties":{"image":"nginx:latest","ports":[],"environmentVariables":[],"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2021-10-20T03:20:27.792Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2021-10-20T03:20:13Z","lastTimestamp":"2021-10-20T03:20:13Z","name":"Pulling","message":"pulling - image \"nginx@sha256:7250923ba3543110040462388756ef099331822c6172a050b12c7a38361ea46f\"","type":"Normal"},{"count":1,"firstTimestamp":"2021-10-20T03:20:21Z","lastTimestamp":"2021-10-20T03:20:21Z","name":"Pulled","message":"Successfully - pulled image \"nginx@sha256:7250923ba3543110040462388756ef099331822c6172a050b12c7a38361ea46f\"","type":"Normal"},{"count":1,"firstTimestamp":"2021-10-20T03:20:27Z","lastTimestamp":"2021-10-20T03:20:27Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.5,"cpu":1.0}}}}],"initContainers":[],"restartPolicy":"Always","osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' + string: '{"properties":{"sku":"Standard","provisioningState":"Succeeded","containers":[{"name":"clicontainer000005","properties":{"image":"nginx:latest","ports":[],"environmentVariables":[],"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2021-12-30T23:42:09.062Z","detailStatus":""}},"resources":{"requests":{"memoryInGB":1.5,"cpu":1.0}}}}],"initContainers":[],"restartPolicy":"Always","osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' headers: cache-control: - no-cache content-length: - - '1459' + - '784' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:20:47 GMT + - Thu, 30 Dec 2021 23:42:24 GMT expires: - '-1' pragma: @@ -2636,7 +4984,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 200 message: OK @@ -2654,7 +5002,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/providers/Microsoft.ContainerInstance?api-version=2021-04-01 response: @@ -2666,7 +5014,7 @@ interactions: Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SystemAssignedResourceIdentity, + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany @@ -2674,49 +5022,49 @@ interactions: Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache @@ -2725,7 +5073,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:20:50 GMT + - Thu, 30 Dec 2021 23:42:24 GMT expires: - '-1' pragma: @@ -2753,24 +5101,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2021-09-01 response: body: - string: '{"properties":{"sku":"Standard","provisioningState":"Succeeded","containers":[{"name":"clicontainer000005","properties":{"image":"nginx:latest","ports":[],"environmentVariables":[],"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2021-10-20T03:20:27.792Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2021-10-20T03:20:13Z","lastTimestamp":"2021-10-20T03:20:13Z","name":"Pulling","message":"pulling - image \"nginx@sha256:7250923ba3543110040462388756ef099331822c6172a050b12c7a38361ea46f\"","type":"Normal"},{"count":1,"firstTimestamp":"2021-10-20T03:20:21Z","lastTimestamp":"2021-10-20T03:20:21Z","name":"Pulled","message":"Successfully - pulled image \"nginx@sha256:7250923ba3543110040462388756ef099331822c6172a050b12c7a38361ea46f\"","type":"Normal"},{"count":1,"firstTimestamp":"2021-10-20T03:20:27Z","lastTimestamp":"2021-10-20T03:20:27Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.5,"cpu":1.0}}}}],"initContainers":[],"restartPolicy":"Always","osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' + string: '{"properties":{"sku":"Standard","provisioningState":"Repairing","containers":[{"name":"clicontainer000005","properties":{"image":"nginx:latest","ports":[],"environmentVariables":[],"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2021-12-30T23:42:09.062Z","detailStatus":""}},"resources":{"requests":{"memoryInGB":1.5,"cpu":1.0}}}}],"initContainers":[],"restartPolicy":"Always","osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' headers: cache-control: - no-cache content-length: - - '1459' + - '784' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:20:50 GMT + - Thu, 30 Dec 2021 23:42:24 GMT expires: - '-1' pragma: @@ -2804,24 +5149,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2021-09-01 response: body: - string: '{"properties":{"sku":"Standard","provisioningState":"Succeeded","containers":[{"name":"clicontainer000005","properties":{"image":"nginx:latest","ports":[],"environmentVariables":[],"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2021-10-20T03:20:27.792Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2021-10-20T03:20:13Z","lastTimestamp":"2021-10-20T03:20:13Z","name":"Pulling","message":"pulling - image \"nginx@sha256:7250923ba3543110040462388756ef099331822c6172a050b12c7a38361ea46f\"","type":"Normal"},{"count":1,"firstTimestamp":"2021-10-20T03:20:21Z","lastTimestamp":"2021-10-20T03:20:21Z","name":"Pulled","message":"Successfully - pulled image \"nginx@sha256:7250923ba3543110040462388756ef099331822c6172a050b12c7a38361ea46f\"","type":"Normal"},{"count":1,"firstTimestamp":"2021-10-20T03:20:27Z","lastTimestamp":"2021-10-20T03:20:27Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.5,"cpu":1.0}}}}],"initContainers":[],"restartPolicy":"Always","osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + string: '{"properties":{"sku":"Standard","provisioningState":"Repairing","containers":[{"name":"clicontainer000005","properties":{"image":"nginx:latest","ports":[],"environmentVariables":[],"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2021-12-30T23:42:09.062Z","detailStatus":""}},"resources":{"requests":{"memoryInGB":1.5,"cpu":1.0}}}}],"initContainers":[],"restartPolicy":"Always","osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' headers: cache-control: - no-cache content-length: - - '1442' + - '767' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:20:55 GMT + - Thu, 30 Dec 2021 23:42:25 GMT expires: - '-1' pragma: @@ -2835,7 +5177,51 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - resource tag + Connection: + - keep-alive + ParameterSetName: + - --ids --tags + User-Agent: + - 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/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2021-09-01 + response: + body: + string: '{"properties":{"sku":"Standard","provisioningState":"Succeeded","containers":[{"name":"clicontainer000005","properties":{"image":"nginx:latest","ports":[],"environmentVariables":[],"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2021-12-30T23:42:09.062Z","detailStatus":""}},"resources":{"requests":{"memoryInGB":1.5,"cpu":1.0}}}}],"initContainers":[],"restartPolicy":"Always","osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + headers: + cache-control: + - no-cache + content-length: + - '767' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:42:55 GMT + expires: + - '-1' + pragma: + - no-cache + 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 @@ -2853,7 +5239,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/providers/Microsoft.RecoveryServices?api-version=2021-04-01 response: @@ -2863,133 +5249,133 @@ interactions: Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-05-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-05-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '14116' + - '14525' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:20:57 GMT + - Thu, 30 Dec 2021 23:42:55 GMT expires: - '-1' pragma: @@ -3017,21 +5403,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-10-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2021-10-20T03%3A19%3A04.4287763Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2021-12-30T23%3A40%3A02.8728242Z''\"","tags":{},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '554' + - '477' content-type: - application/json date: - - Wed, 20 Oct 2021 03:20:59 GMT + - Thu, 30 Dec 2021 23:42:56 GMT expires: - '-1' pragma: @@ -3067,21 +5453,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-10-01 response: body: - string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2021-10-20T03%3A21%3A02.3987335Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' + string: '{"location":"westus","name":"vault-000002","etag":"W/\"datetime''2021-12-30T23%3A42%3A57.6152174Z''\"","tags":{"cli-test":"test"},"properties":{"provisioningState":"Succeeded","privateEndpointStateForBackup":"None","privateEndpointStateForSiteRecovery":"None"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002","type":"Microsoft.RecoveryServices/vaults","sku":{"name":"Standard"}}' headers: cache-control: - no-cache content-length: - - '571' + - '494' content-type: - application/json date: - - Wed, 20 Oct 2021 03:21:03 GMT + - Thu, 30 Dec 2021 23:42:56 GMT expires: - '-1' pragma: @@ -3097,7 +5483,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '208' + - '209' status: code: 200 message: OK @@ -3115,7 +5501,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/providers/Microsoft.ContainerRegistry?api-version=2021-04-01 response: @@ -3128,7 +5514,7 @@ interactions: Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + India West","Jio India Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"registries/connectedRegistries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK @@ -3138,7 +5524,7 @@ interactions: US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada @@ -3146,7 +5532,7 @@ interactions: US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada @@ -3154,7 +5540,7 @@ interactions: US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada @@ -3162,7 +5548,7 @@ interactions: US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada @@ -3170,7 +5556,7 @@ interactions: US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -3178,7 +5564,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -3186,7 +5572,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -3194,7 +5580,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -3202,7 +5588,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South Central US","West Central US","East US","West Europe","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","France Central","South @@ -3210,7 +5596,7 @@ interactions: South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -3218,7 +5604,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -3226,7 +5612,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -3234,7 +5620,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East US","West Europe","West US 2","South Central US","Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US 2","Japan East","Japan West","North Central US","North @@ -3276,10 +5662,24 @@ interactions: East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East US","West Europe","West US 2","South Central US","Canada Central","Central - US","East Asia","East US 2","North Europe","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"defaultApiVersion":"2019-06-01-preview","capabilities":"CrossResourceGroupResourceMove, + US","East US 2","North Europe","Central US EUAP","East US 2 EUAP","Australia + East","Australia Southeast","Brazil South","Canada East","Central India","East + Asia","Japan East","Japan West","North Central US","Southeast Asia","South + India","UK South","UK West","West US","West Central US","France Central","Korea + Central","South Africa North","UAE North","Switzerland North","Switzerland + West","UAE Central","Brazil Southeast","Germany West Central","Norway East","Korea + South","West US 3","Norway West","Sweden Central","Sweden South","Jio India + West","Jio India Central","Australia Central 2"],"apiVersions":["2019-06-01-preview"],"defaultApiVersion":"2019-06-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","West US 2","South Central US","Central US","East Asia","East US 2","East - US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East + US","West US 2","South Central US","Central US","East US 2","Central US EUAP","East + US 2 EUAP","West Europe","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Central India","East Asia","Japan East","Japan West","North + Central US","North Europe","Southeast Asia","South India","UK South","UK West","West + US","West Central US","France Central","Korea Central","South Africa North","UAE + North","Switzerland North","Switzerland West","UAE Central","Brazil Southeast","Germany + West Central","Norway East","Korea South","West US 3","Norway West","Sweden + Central","Sweden South","Jio India West","Jio India Central","Australia Central + 2"],"apiVersions":["2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East US","West Europe","West US 2","South Central US","Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US 2","Japan East","Japan West","North Central US","North @@ -3394,7 +5794,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil @@ -3403,7 +5803,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil @@ -3412,7 +5812,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","South Africa North","UAE @@ -3420,7 +5820,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","South Africa North","UAE @@ -3428,7 +5828,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/setupAuth","locations":["East + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/setupAuth","locations":["East US","West Europe","West US 2","South Central US","Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US 2","Japan East","Japan West","North Central US","North @@ -3452,7 +5852,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","South Africa North","UAE @@ -3470,7 +5870,7 @@ interactions: Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South Central US","West US","East US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","South Africa North","UAE North","France Central","East Asia","Japan East","Japan @@ -3478,7 +5878,7 @@ interactions: Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","South Africa North","UAE @@ -3486,7 +5886,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","South Africa North","UAE North","France Central","East Asia","Japan East","Japan @@ -3521,7 +5921,7 @@ interactions: Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan @@ -3529,7 +5929,7 @@ interactions: Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-06-01-preview","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South + India West","Jio India Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-06-01-preview","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South Central US","East US","West US","Central US","East US 2","North Central US","West Central US","West US 2","Brazil South","Canada East","Canada Central","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central @@ -3538,16 +5938,16 @@ interactions: Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Central US EUAP","East US - 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01","2017-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01","2017-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '42069' + - '43961' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:21:05 GMT + - Thu, 30 Dec 2021 23:42:57 GMT expires: - '-1' pragma: @@ -3575,23 +5975,24 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2021-09-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:40:17.2653538+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:40:18.6141138+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - - '2019-05-01' + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: - - '450' + - '647' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:21:06 GMT + - Thu, 30 Dec 2021 23:42:57 GMT expires: - '-1' pragma: @@ -3627,23 +6028,24 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2021-09-01 response: body: - string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' + string: '{"type":"Microsoft.ContainerRegistry/registries/webhooks","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook","name":"cliregwebhook","location":"westus","tags":{"cli-test":"test"},"systemData":{"createdBy":"savaradh@microsoft.com","createdByType":"User","createdAt":"2021-12-30T23:40:17.2653538+00:00","lastModifiedBy":"savaradh@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2021-12-30T23:42:58.2594984+00:00"},"properties":{"status":"enabled","scope":"","actions":["push"],"provisioningState":"Succeeded"}}' headers: api-supported-versions: - - '2019-05-01' + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: - - '467' + - '664' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:21:11 GMT + - Thu, 30 Dec 2021 23:42:57 GMT expires: - '-1' pragma: @@ -3659,7 +6061,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -3677,7 +6079,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/providers/Microsoft.ContainerInstance?api-version=2021-04-01 response: @@ -3689,7 +6091,7 @@ interactions: Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SystemAssignedResourceIdentity, + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"serviceAssociationLinks","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany @@ -3697,49 +6099,49 @@ interactions: Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"SupportsExtension"},{"resourceType":"locations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/capabilities","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operations","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/operationresults","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"operations","locations":[],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/cachedImages","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US","East US 2","France Central","Germany West Central","Japan East","Japan West","Jio India West","Korea Central","North Central US","North Europe","Norway East","South Africa North","South Central US","Southeast Asia","South India","Switzerland North","Switzerland West","UAE North","UK South","UK West","West Central US","West Europe","West US","West - US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-05-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US 2","West US 3","Central US EUAP"],"apiVersions":["2021-09-01","2021-07-01","2021-03-01","2020-11-01","2019-12-01","2018-12-01","2018-10-01","2018-09-01","2018-07-01","2018-06-01","2018-04-01","2018-02-01-preview","2017-12-01-preview","2017-10-01-preview","2017-08-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache @@ -3748,7 +6150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:21:13 GMT + - Thu, 30 Dec 2021 23:42:57 GMT expires: - '-1' pragma: @@ -3776,24 +6178,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2021-09-01 response: body: - string: '{"properties":{"sku":"Standard","provisioningState":"Succeeded","containers":[{"name":"clicontainer000005","properties":{"image":"nginx:latest","ports":[],"environmentVariables":[],"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2021-10-20T03:20:27.792Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2021-10-20T03:20:13Z","lastTimestamp":"2021-10-20T03:20:13Z","name":"Pulling","message":"pulling - image \"nginx@sha256:7250923ba3543110040462388756ef099331822c6172a050b12c7a38361ea46f\"","type":"Normal"},{"count":1,"firstTimestamp":"2021-10-20T03:20:21Z","lastTimestamp":"2021-10-20T03:20:21Z","name":"Pulled","message":"Successfully - pulled image \"nginx@sha256:7250923ba3543110040462388756ef099331822c6172a050b12c7a38361ea46f\"","type":"Normal"},{"count":1,"firstTimestamp":"2021-10-20T03:20:27Z","lastTimestamp":"2021-10-20T03:20:27Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.5,"cpu":1.0}}}}],"initContainers":[],"restartPolicy":"Always","osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' + string: '{"properties":{"sku":"Standard","provisioningState":"Succeeded","containers":[{"name":"clicontainer000005","properties":{"image":"nginx:latest","ports":[],"environmentVariables":[],"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2021-12-30T23:42:09.062Z","detailStatus":""}},"resources":{"requests":{"memoryInGB":1.5,"cpu":1.0}}}}],"initContainers":[],"restartPolicy":"Always","osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{}}' headers: cache-control: - no-cache content-length: - - '1442' + - '767' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:21:14 GMT + - Thu, 30 Dec 2021 23:42:58 GMT expires: - '-1' pragma: @@ -3827,24 +6226,21 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005?api-version=2021-09-01 response: body: - string: '{"properties":{"sku":"Standard","provisioningState":"Succeeded","containers":[{"name":"clicontainer000005","properties":{"image":"nginx:latest","ports":[],"environmentVariables":[],"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2021-10-20T03:20:27.792Z","detailStatus":""},"events":[{"count":1,"firstTimestamp":"2021-10-20T03:20:13Z","lastTimestamp":"2021-10-20T03:20:13Z","name":"Pulling","message":"pulling - image \"nginx@sha256:7250923ba3543110040462388756ef099331822c6172a050b12c7a38361ea46f\"","type":"Normal"},{"count":1,"firstTimestamp":"2021-10-20T03:20:21Z","lastTimestamp":"2021-10-20T03:20:21Z","name":"Pulled","message":"Successfully - pulled image \"nginx@sha256:7250923ba3543110040462388756ef099331822c6172a050b12c7a38361ea46f\"","type":"Normal"},{"count":1,"firstTimestamp":"2021-10-20T03:20:27Z","lastTimestamp":"2021-10-20T03:20:27Z","name":"Started","message":"Started - container","type":"Normal"}]},"resources":{"requests":{"memoryInGB":1.5,"cpu":1.0}}}}],"initContainers":[],"restartPolicy":"Always","osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' + string: '{"properties":{"sku":"Standard","provisioningState":"Succeeded","containers":[{"name":"clicontainer000005","properties":{"image":"nginx:latest","ports":[],"environmentVariables":[],"instanceView":{"restartCount":0,"currentState":{"state":"Running","startTime":"2021-12-30T23:42:09.062Z","detailStatus":""}},"resources":{"requests":{"memoryInGB":1.5,"cpu":1.0}}}}],"initContainers":[],"restartPolicy":"Always","osType":"Linux","instanceView":{"events":[],"state":"Running"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerInstance/containerGroups/clicontainer000005","name":"clicontainer000005","type":"Microsoft.ContainerInstance/containerGroups","location":"westus","tags":{"cli-test":"test"}}' headers: cache-control: - no-cache content-length: - - '1459' + - '784' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:21:17 GMT + - Thu, 30 Dec 2021 23:42:58 GMT expires: - '-1' pragma: @@ -3858,7 +6254,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -3881,15 +6277,15 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-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/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cli_ip000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004\",\r\n - \ \"etag\": \"W/\\\"a5b49355-e6c3-462f-abd4-d2650af0a243\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"f03cea90-a8a2-48e9-92cf-6bb7af66e46c\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"31873fc7-da35-48b5-986c-542792e4bb7f\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"3a6e67db-f786-4811-b88a-069b119e95b9\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -3898,15 +6294,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/79c2c278-69df-4b46-a76f-e1f488ee5c6d?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8e85a24-abcd-4c38-b3ac-9c127ee3fb2b?api-version=2021-05-01 cache-control: - no-cache content-length: - - '715' + - '658' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:21:26 GMT + - Thu, 30 Dec 2021 23:43:03 GMT expires: - '-1' pragma: @@ -3919,9 +6315,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3d296140-2c25-49ed-aea6-3dfc1c079280 + - 3934fc0a-1927-463b-894f-893747a7c001 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -3939,9 +6335,9 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-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/westus/operations/79c2c278-69df-4b46-a76f-e1f488ee5c6d?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f8e85a24-abcd-4c38-b3ac-9c127ee3fb2b?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3953,7 +6349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:21:27 GMT + - Thu, 30 Dec 2021 23:43:04 GMT expires: - '-1' pragma: @@ -3970,7 +6366,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c9606701-d311-42f5-95c8-089096f694c9 + - e1eca81a-c9af-447f-a642-87e35baea4a8 status: code: 200 message: OK @@ -3988,16 +6384,16 @@ interactions: ParameterSetName: - -g -n --location --sku User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.1 (Windows-10-10.0.19041-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/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"cli_ip000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004\",\r\n - \ \"etag\": \"W/\\\"7001b37c-72dc-4fb7-974c-4980be536a74\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"740beac0-c3ee-4958-b82d-17af4d9401bc\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"31873fc7-da35-48b5-986c-542792e4bb7f\",\r\n \"ipAddress\": - \"138.91.157.132\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"3a6e67db-f786-4811-b88a-069b119e95b9\",\r\n \"ipAddress\": + \"23.100.36.2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -4005,13 +6401,13 @@ interactions: cache-control: - no-cache content-length: - - '752' + - '692' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:21:28 GMT + - Thu, 30 Dec 2021 23:43:04 GMT etag: - - W/"7001b37c-72dc-4fb7-974c-4980be536a74" + - W/"740beac0-c3ee-4958-b82d-17af4d9401bc" expires: - '-1' pragma: @@ -4028,7 +6424,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 97c2ea02-667d-4a9e-967c-a314867b0d4c + - b66d67b6-c0aa-441e-8932-bf56f8325ec5 status: code: 200 message: OK @@ -4046,7 +6442,7 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/providers/Microsoft.Network?api-version=2021-04-01 response: @@ -4056,534 +6452,479 @@ interactions: Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East - US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":[]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":[]},{"location":"East US","zones":["2","3","1"]},{"location":"East - US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France - Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South - Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Switzerland - North","zones":[]},{"location":"UK South","zones":["2","3","1"]},{"location":"West - Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West - US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["1","3","2"]},{"location":"Brazil South","zones":["1","3","2"]},{"location":"Canada + Central","zones":["1","3","2"]},{"location":"Central India","zones":["1","3","2"]},{"location":"Central + US","zones":["1","3","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["1","3","2"]},{"location":"East US","zones":["1","3","2"]},{"location":"East + US 2","zones":["1","3","2"]},{"location":"East US 2 EUAP","zones":["1","3","2"]},{"location":"France + Central","zones":["1","3","2"]},{"location":"Germany West Central","zones":["1","3","2"]},{"location":"Japan + East","zones":["1","3","2"]},{"location":"Korea Central","zones":["1","3","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["1","3","2"]},{"location":"Norway + East","zones":["1","3","2"]},{"location":"South Africa North","zones":["1","3","2"]},{"location":"South + Central US","zones":["1","3","2"]},{"location":"Southeast Asia","zones":["1","3","2"]},{"location":"Sweden + Central","zones":["1","3","2"]},{"location":"Switzerland North","zones":[]},{"location":"UAE + North","zones":[]},{"location":"UK South","zones":["1","3","2"]},{"location":"West + Europe","zones":["1","3","2"]},{"location":"West US 2","zones":["1","3","2"]},{"location":"West + US 3","zones":["1","3","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":[]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":[]},{"location":"East US","zones":["2","3","1"]},{"location":"East - US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France - Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South - Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Switzerland - North","zones":[]},{"location":"UK South","zones":["2","3","1"]},{"location":"West - Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West - US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["1","3","2"]},{"location":"Brazil South","zones":["1","3","2"]},{"location":"Canada + Central","zones":["1","3","2"]},{"location":"Central India","zones":["1","3","2"]},{"location":"Central + US","zones":["1","3","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["1","3","2"]},{"location":"East US","zones":["1","3","2"]},{"location":"East + US 2","zones":["1","3","2"]},{"location":"East US 2 EUAP","zones":["1","3","2"]},{"location":"France + Central","zones":["1","3","2"]},{"location":"Germany West Central","zones":["1","3","2"]},{"location":"Japan + East","zones":["1","3","2"]},{"location":"Korea Central","zones":["1","3","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["1","3","2"]},{"location":"Norway + East","zones":["1","3","2"]},{"location":"South Africa North","zones":["1","3","2"]},{"location":"South + Central US","zones":["1","3","2"]},{"location":"Southeast Asia","zones":["1","3","2"]},{"location":"Sweden + Central","zones":["1","3","2"]},{"location":"Switzerland North","zones":[]},{"location":"UAE + North","zones":[]},{"location":"UK South","zones":["1","3","2"]},{"location":"West + Europe","zones":["1","3","2"]},{"location":"West US 2","zones":["1","3","2"]},{"location":"West + US 3","zones":["1","3","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":[]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":[]},{"location":"East US","zones":["2","3","1"]},{"location":"East - US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France - Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South - Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Switzerland - North","zones":[]},{"location":"UK South","zones":["2","3","1"]},{"location":"West - Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West - US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["1","3","2"]},{"location":"Brazil South","zones":["1","3","2"]},{"location":"Canada + Central","zones":["1","3","2"]},{"location":"Central India","zones":["1","3","2"]},{"location":"Central + US","zones":["1","3","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["1","3","2"]},{"location":"East US","zones":["1","3","2"]},{"location":"East + US 2","zones":["1","3","2"]},{"location":"East US 2 EUAP","zones":["1","3","2"]},{"location":"France + Central","zones":["1","3","2"]},{"location":"Germany West Central","zones":["1","3","2"]},{"location":"Japan + East","zones":["1","3","2"]},{"location":"Korea Central","zones":["1","3","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["1","3","2"]},{"location":"Norway + East","zones":["1","3","2"]},{"location":"South Africa North","zones":["1","3","2"]},{"location":"South + Central US","zones":["1","3","2"]},{"location":"Southeast Asia","zones":["1","3","2"]},{"location":"Sweden + Central","zones":["1","3","2"]},{"location":"Switzerland North","zones":[]},{"location":"UAE + North","zones":[]},{"location":"UK South","zones":["1","3","2"]},{"location":"West + Europe","zones":["1","3","2"]},{"location":"West US 2","zones":["1","3","2"]},{"location":"West + US 3","zones":["1","3","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East - US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East - US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","South Africa + North","UAE North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Central US EUAP","East US 2 EUAP","Korea + South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East - US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"CrossResourceGroupResourceMove, + South","Korea Central","France Central","Australia Central","South Africa + North","UAE North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Central US EUAP","East US 2 EUAP","Korea + South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","France - South","Australia Central","South Africa North","UAE North","Switzerland North","Germany - West Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":[]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":[]},{"location":"East US","zones":["2","3","1"]},{"location":"East - US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France - Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South - Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Switzerland - North","zones":[]},{"location":"UK South","zones":["2","3","1"]},{"location":"West - Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West - US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"ddosCustomPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["1","3","2"]},{"location":"Brazil South","zones":["1","3","2"]},{"location":"Canada + Central","zones":["1","3","2"]},{"location":"Central India","zones":["1","3","2"]},{"location":"Central + US","zones":["1","3","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["1","3","2"]},{"location":"East US","zones":["1","3","2"]},{"location":"East + US 2","zones":["1","3","2"]},{"location":"East US 2 EUAP","zones":["1","3","2"]},{"location":"France + Central","zones":["1","3","2"]},{"location":"Germany West Central","zones":["1","3","2"]},{"location":"Japan + East","zones":["1","3","2"]},{"location":"Korea Central","zones":["1","3","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["1","3","2"]},{"location":"Norway + East","zones":["1","3","2"]},{"location":"South Africa North","zones":["1","3","2"]},{"location":"South + Central US","zones":["1","3","2"]},{"location":"Southeast Asia","zones":["1","3","2"]},{"location":"Sweden + Central","zones":["1","3","2"]},{"location":"Switzerland North","zones":[]},{"location":"UAE + North","zones":[]},{"location":"UK South","zones":["1","3","2"]},{"location":"West + Europe","zones":["1","3","2"]},{"location":"West US 2","zones":["1","3","2"]},{"location":"West + US 3","zones":["1","3","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East - US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":[]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":[]},{"location":"East US","zones":["2","3","1"]},{"location":"East - US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France - Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South - Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Switzerland - North","zones":[]},{"location":"UK South","zones":["2","3","1"]},{"location":"West - Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West - US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["1","3","2"]},{"location":"Brazil South","zones":["1","3","2"]},{"location":"Canada + Central","zones":["1","3","2"]},{"location":"Central India","zones":["1","3","2"]},{"location":"Central + US","zones":["1","3","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["1","3","2"]},{"location":"East US","zones":["1","3","2"]},{"location":"East + US 2","zones":["1","3","2"]},{"location":"East US 2 EUAP","zones":["1","3","2"]},{"location":"France + Central","zones":["1","3","2"]},{"location":"Germany West Central","zones":["1","3","2"]},{"location":"Japan + East","zones":["1","3","2"]},{"location":"Korea Central","zones":["1","3","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["1","3","2"]},{"location":"Norway + East","zones":["1","3","2"]},{"location":"South Africa North","zones":["1","3","2"]},{"location":"South + Central US","zones":["1","3","2"]},{"location":"Southeast Asia","zones":["1","3","2"]},{"location":"Sweden + Central","zones":["1","3","2"]},{"location":"Switzerland North","zones":[]},{"location":"UAE + North","zones":[]},{"location":"UK South","zones":["1","3","2"]},{"location":"West + Europe","zones":["1","3","2"]},{"location":"West US 2","zones":["1","3","2"]},{"location":"West + US 3","zones":["1","3","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, @@ -4592,253 +6933,244 @@ interactions: Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + South","Korea Central","France Central","Australia Central","South Africa + North","UAE North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Central US EUAP","East US 2 EUAP","Korea + South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","South - Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","South Africa + North","Switzerland North","Germany West Central","Norway East","West US 3","Jio + India West","Sweden Central","Central US EUAP","East US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + South","Korea Central","France Central","Australia Central","South Africa + North","UAE North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Central US EUAP","East US 2 EUAP","Korea + South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + South","Korea Central","France Central","Australia Central","South Africa + North","UAE North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Central US EUAP","East US 2 EUAP","Korea + South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","UAE - North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + South","Korea Central","France Central","Australia Central","UAE North","South + Africa North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["France - Central","West US","East US","North Europe","West Europe","East Asia","Southeast - Asia","North Central US","South Central US","Central US","East US 2","Japan - East","Japan West","Brazil South","Australia East","Australia Southeast","Central - India","South India","West India","Canada Central","Canada East","West Central - US","West US 2","UK West","UK South","Central US EUAP","East US 2 EUAP","Korea - Central","Korea South","Australia Central","South Africa North","UAE North","Switzerland - North","Germany West Central","Norway East","West US 3","East US SLV","Jio - India West","Qatar Central"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["UAE - North","Australia Central 2","UAE Central","Germany North","Central India","Korea - South","Switzerland North","Switzerland West","Japan West","France South","South - Africa West","West India","Canada East","South India","Germany West Central","Norway - East","Norway West","South Africa North","East Asia","Southeast Asia","Korea - Central","Brazil South","Brazil Southeast","West US 3","Jio India West","Japan - East","UK West","West US","East US","North Europe","West Europe","West Central - US","South Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"ipGroups","locations":["UAE North","Australia - Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland + Central"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["UAE + North","Australia Central 2","UAE Central","Germany North","Central India","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West US 3","Jio India West","Japan East","UK West","West - US","East US","North Europe","West Europe","South Central US","Australia East","Australia + US","East US","North Europe","West Europe","West Central US","South Central + US","Australia East","Australia Central","Australia Southeast","UK South","East + US 2","West US 2","North Central US","Canada Central","France Central","Central + US","Korea South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"ipGroups","locations":["UAE North","Australia + Central 2","UAE Central","Germany North","Central India","Switzerland North","Switzerland + West","Japan West","France South","South Africa West","West India","Canada + East","South India","Germany West Central","Norway East","Norway West","South + Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil + Southeast","West US 3","Jio India West","Japan East","UK West","West US","East + US","North Europe","West Europe","South Central US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"capabilities":"None"},{"resourceType":"securityPartnerProviders","locations":["West + US","Canada Central","France Central","West Central US","Central US","Korea + South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"capabilities":"None"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","France - Central","Australia Central","Japan West","Japan East","Korea Central","Korea - South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":[]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":[]},{"location":"East US","zones":["2","3","1"]},{"location":"East - US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France - Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South - Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Switzerland - North","zones":[]},{"location":"UK South","zones":["2","3","1"]},{"location":"West - Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West - US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Australia Central","Japan West","Japan East","Korea Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["1","3","2"]},{"location":"Brazil South","zones":["1","3","2"]},{"location":"Canada + Central","zones":["1","3","2"]},{"location":"Central India","zones":["1","3","2"]},{"location":"Central + US","zones":["1","3","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["1","3","2"]},{"location":"East US","zones":["1","3","2"]},{"location":"East + US 2","zones":["1","3","2"]},{"location":"East US 2 EUAP","zones":["1","3","2"]},{"location":"France + Central","zones":["1","3","2"]},{"location":"Germany West Central","zones":["1","3","2"]},{"location":"Japan + East","zones":["1","3","2"]},{"location":"Korea Central","zones":["1","3","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["1","3","2"]},{"location":"Norway + East","zones":["1","3","2"]},{"location":"South Africa North","zones":["1","3","2"]},{"location":"South + Central US","zones":["1","3","2"]},{"location":"Southeast Asia","zones":["1","3","2"]},{"location":"Sweden + Central","zones":["1","3","2"]},{"location":"Switzerland North","zones":[]},{"location":"UAE + North","zones":[]},{"location":"UK South","zones":["1","3","2"]},{"location":"West + Europe","zones":["1","3","2"]},{"location":"West US 2","zones":["1","3","2"]},{"location":"West + US 3","zones":["1","3","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East - US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + South","Korea Central","France Central","Australia Central","South Africa + North","UAE North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Central US EUAP","East US 2 EUAP","Korea + South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"locations/bareMetalTenants","locations":["West @@ -4846,97 +7178,118 @@ interactions: Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"bastionHosts","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualRouters","locations":["UAE North","Australia - Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland - North","Switzerland West","Japan West","France South","South Africa West","West - India","Canada East","South India","Germany West Central","Norway East","Norway - West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil - South","Brazil Southeast","West US 3","Jio India West","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Central 2","UAE Central","Germany North","Central India","Switzerland North","Switzerland + West","Japan West","France South","South Africa West","West India","Canada + East","South India","Germany West Central","Norway East","Norway West","South + Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil + Southeast","West US 3","Jio India West","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Korea + South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Brazil Southeast","West US 3","Jio India West","UAE North","Australia Central 2","UAE - Central","Germany North","Central India","Korea South","Switzerland North","Switzerland + Central","Germany North","Central India","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West US","East US","North Europe","West Europe","West Central US","South Central US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Central","Central US","Korea South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + South","Korea Central","France Central","Australia Central","South Africa + North","UAE North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Central US EUAP","East US 2 EUAP","Korea + South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","Jio India West","South Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Brazil Southeast","Korea Central","Southeast Asia","South + Central US","Norway West","Australia East","Japan East","Canada East","Canada + Central","Switzerland North","East US 2 EUAP","Central US EUAP","Korea South"],"apiVersions":["2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","Jio India West","South Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-02-01-preview","2020-08-01"],"capabilities":"None"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"locations/serviceTagDetails","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01"],"capabilities":"None"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePorts","locations":["West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Brazil Southeast","Korea Central","Southeast Asia","South + Central US","Norway West","Australia East","Japan East","Canada East","Canada + Central","Switzerland North","East US 2 EUAP","Central US EUAP","Korea South"],"apiVersions":["2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Brazil Southeast","Korea Central","Southeast Asia","South + Central US","Norway West","Australia East","Japan East","Canada East","Canada + Central","Switzerland North","East US 2 EUAP","Central US EUAP","Korea South"],"apiVersions":["2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"None"},{"resourceType":"networkManagerConnections","locations":["West + Central US"],"apiVersions":["2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Brazil Southeast","Korea Central","Southeast Asia","South + Central US","Norway West","Australia East","Japan East","Canada East","Canada + Central","Switzerland North","East US 2 EUAP","Central US EUAP","Korea South"],"apiVersions":["2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Brazil Southeast","Korea Central","Southeast Asia","South + Central US","Norway West","Australia East","Japan East","Canada East","Canada + Central","Switzerland North","East US 2 EUAP","Central US EUAP","Korea South"],"apiVersions":["2021-02-01-preview","2020-08-01"],"capabilities":"None"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Central US EUAP","East US 2 EUAP","Korea Central","Korea - South","France Central","Australia Central","UAE North","South Africa North","Switzerland - North","Germany West Central","Norway East","West US 3","East US SLV","Jio - India West","Qatar Central"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"networkWatchers/lenses","locations":["Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East US 2 EUAP","global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia East","Australia @@ -4946,44 +7299,16 @@ interactions: Central US","South Central US","West US","West US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkManagers","locations":["East US - 2 EUAP","Central US EUAP","West Central US","North Central US","West US","West - Europe","UAE Central","Germany North","East US","West India","East US 2","Australia - Central","Australia Central 2","South Africa West","Brazil South","UK West","North - Europe","Central US","UAE North","Germany West Central","Switzerland West","East - Asia","Jio India West","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Japan West","Norway East","France Central","West - US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","East US SLV","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central"],"apiVersions":["2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["East - US 2 EUAP","Central US EUAP","West Central US","North Central US","West US","West - Europe","UAE Central","Germany North","East US","West India","East US 2","Australia - Central","Australia Central 2","South Africa West","Brazil South","UK West","North - Europe","Central US","UAE North","Germany West Central","Switzerland West","East - Asia","Jio India West","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Japan West","Norway East","France Central","West - US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","East US SLV","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central"],"apiVersions":["2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["East - US 2 EUAP","Central US EUAP","West Central US","North Central US","West US","West - Europe","UAE Central","Germany North","East US","West India","East US 2","Australia - Central","Australia Central 2","South Africa West","Brazil South","UK West","North - Europe","Central US","UAE North","Germany West Central","Switzerland West","East - Asia","Jio India West","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Japan West","Norway East","France Central","West - US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","East US SLV","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central"],"apiVersions":["2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '133200' + - '124768' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:21:32 GMT + - Thu, 30 Dec 2021 23:43:05 GMT expires: - '-1' pragma: @@ -5011,16 +7336,16 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2021-06-01 response: body: string: "{\r\n \"name\": \"cli_ip000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004\",\r\n - \ \"etag\": \"W/\\\"7001b37c-72dc-4fb7-974c-4980be536a74\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"740beac0-c3ee-4958-b82d-17af4d9401bc\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"31873fc7-da35-48b5-986c-542792e4bb7f\",\r\n \"ipAddress\": - \"138.91.157.132\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"3a6e67db-f786-4811-b88a-069b119e95b9\",\r\n \"ipAddress\": + \"23.100.36.2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -5028,13 +7353,13 @@ interactions: cache-control: - no-cache content-length: - - '752' + - '692' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:21:33 GMT + - Thu, 30 Dec 2021 23:43:05 GMT etag: - - W/"7001b37c-72dc-4fb7-974c-4980be536a74" + - W/"740beac0-c3ee-4958-b82d-17af4d9401bc" expires: - '-1' pragma: @@ -5051,7 +7376,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4f03a9f5-a8be-4848-8061-6b8324017f77 + - ef7199b2-2c96-44cf-b9e4-fa2ea78d0fc9 status: code: 200 message: OK @@ -5073,17 +7398,17 @@ interactions: ParameterSetName: - --ids --tags User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2021-06-01 response: body: string: "{\r\n \"name\": \"cli_ip000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004\",\r\n - \ \"etag\": \"W/\\\"ab8cbd1a-467d-4d9c-8862-4ab1be5a0aca\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"ca2eafad-8150-4e71-8eec-c84f52aabaf8\\\"\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"cli-test\": \"test\"\r\n },\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"31873fc7-da35-48b5-986c-542792e4bb7f\",\r\n - \ \"ipAddress\": \"138.91.157.132\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3a6e67db-f786-4811-b88a-069b119e95b9\",\r\n + \ \"ipAddress\": \"23.100.36.2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n + \ \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n \ }\r\n}" @@ -5093,11 +7418,11 @@ interactions: cache-control: - no-cache content-length: - - '795' + - '735' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:21:40 GMT + - Thu, 30 Dec 2021 23:43:05 GMT expires: - '-1' pragma: @@ -5114,7 +7439,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 67ddcc49-2021-4512-940f-0fe61560ae40 + - de8c8b16-7722-47e4-a037-d8798f71b144 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -5134,7 +7459,7 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/providers/Microsoft.RecoveryServices?api-version=2021-04-01 response: @@ -5144,133 +7469,133 @@ interactions: Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-05-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-12-20-preview","2018-12-20","2018-07-10-preview","2018-07-10","2018-01-10","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2016-05-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-05-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West + SupportsLocation"},{"resourceType":"operations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-04-01","2021-03-01","2021-02-10","2021-02-01-preview","2021-02-01","2021-01-01","2020-12-01","2020-10-01","2020-07-01-preview","2020-07-01","2020-02-02-preview","2020-02-02","2019-06-15","2019-05-13-preview","2019-05-13","2018-07-10-preview","2018-07-10","2018-01-10","2017-09-01","2017-07-01-preview","2017-07-01","2016-12-01","2016-08-10","2016-06-01","2015-12-15","2015-12-10","2015-11-10","2015-08-15","2015-08-10","2015-06-10","2015-03-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-08-10"}],"capabilities":"None"},{"resourceType":"locations","locations":[],"apiVersions":["2021-11-01-preview","2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01","2016-06-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/checkNameAvailability","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-01-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-01-10"}],"capabilities":"None"},{"resourceType":"locations/allocatedStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/allocateStamp","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2016-06-01","2015-08-15"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2016-06-01"}],"capabilities":"None"},{"resourceType":"locations/backupValidateFeatures","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupPreValidateProtection","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-05-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-03-01","2017-07-01"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJobs","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrJob","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupAadProperties","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrossRegionRestore","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"locations/backupCrrOperationsStatus","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Korea South","Central + US EUAP","East US 2 EUAP"],"apiVersions":["2018-12-20-preview","2018-12-20"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-12-20-preview"}],"capabilities":"None"},{"resourceType":"backupProtectedItems","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2017-07-01-preview"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2017-07-01-preview"}],"capabilities":"SupportsExtension"},{"resourceType":"replicationEligibilityResults","locations":["West US","East US","North Europe","West Europe","Brazil South","East Asia","Southeast Asia","North Central US","South Central US","Japan East","Japan West","Australia East","Australia Southeast","Central US","East US 2","Central India","South India","West India","West Central US","Canada Central","Canada East","West - US 2","UK South","UK West","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + US 2","UK South","UK West","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-10-01","2021-08-01","2021-07-01","2021-06-01","2021-02-10","2018-07-10"],"apiProfiles":[{"profileVersion":"2018-06-01-profile","apiVersion":"2018-07-10"}],"capabilities":"SupportsExtension"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '14116' + - '14525' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:21:42 GMT + - Thu, 30 Dec 2021 23:43:06 GMT expires: - '-1' pragma: @@ -5300,9 +7625,9 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-08-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.RecoveryServices/vaults/vault-000002?api-version=2021-10-01 response: body: string: '' @@ -5312,7 +7637,7 @@ interactions: content-length: - '0' date: - - Wed, 20 Oct 2021 03:21:51 GMT + - Thu, 30 Dec 2021 23:43:10 GMT expires: - '-1' pragma: @@ -5340,7 +7665,7 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/providers/Microsoft.ContainerRegistry?api-version=2021-04-01 response: @@ -5353,7 +7678,7 @@ interactions: Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, + India West","Jio India Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation"},{"resourceType":"registries/connectedRegistries","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK @@ -5363,7 +7688,7 @@ interactions: US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/connectedRegistries/deactivate","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada @@ -5371,7 +7696,7 @@ interactions: US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview"],"capabilities":"None"},{"resourceType":"registries/scopeMaps","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada @@ -5379,7 +7704,7 @@ interactions: US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/tokens","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada @@ -5387,7 +7712,7 @@ interactions: US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/generateCredentials","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil South","Canada East","Canada @@ -5395,7 +7720,7 @@ interactions: US 2","Korea Central","France Central","South Africa North","UAE North","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-05-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnections","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -5403,7 +7728,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -5411,7 +7736,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateEndpointConnectionProxies/validate","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -5419,7 +7744,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/privateLinkResources","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -5427,7 +7752,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/importImage","locations":["South Central US","West Central US","East US","West Europe","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","France Central","South @@ -5435,7 +7760,7 @@ interactions: South","UK West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/exportPipelines","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -5443,7 +7768,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/importPipelines","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -5451,7 +7776,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"SystemAssignedResourceIdentity"},{"resourceType":"registries/pipelineRuns","locations":["West US","East US","South Central US","West Europe","Switzerland North","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","East Asia","Japan East","Japan West","Southeast Asia","South India","Brazil @@ -5459,7 +7784,7 @@ interactions: US","West Central US","West US 2","Korea Central","France Central","South Africa North","UAE North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview"],"capabilities":"None"},{"resourceType":"registries/listBuildSourceUploadUrl","locations":["East US","West Europe","West US 2","South Central US","Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US 2","Japan East","Japan West","North Central US","North @@ -5501,10 +7826,24 @@ interactions: East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/agentPools","locations":["East US","West Europe","West US 2","South Central US","Canada Central","Central - US","East Asia","East US 2","North Europe","East US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"defaultApiVersion":"2019-06-01-preview","capabilities":"CrossResourceGroupResourceMove, + US","East US 2","North Europe","Central US EUAP","East US 2 EUAP","Australia + East","Australia Southeast","Brazil South","Canada East","Central India","East + Asia","Japan East","Japan West","North Central US","Southeast Asia","South + India","UK South","UK West","West US","West Central US","France Central","Korea + Central","South Africa North","UAE North","Switzerland North","Switzerland + West","UAE Central","Brazil Southeast","Germany West Central","Norway East","Korea + South","West US 3","Norway West","Sweden Central","Sweden South","Jio India + West","Jio India Central","Australia Central 2"],"apiVersions":["2019-06-01-preview"],"defaultApiVersion":"2019-06-01-preview","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/agentPools/listQueueStatus","locations":["East - US","West US 2","South Central US","Central US","East Asia","East US 2","East - US 2 EUAP"],"apiVersions":["2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East + US","West US 2","South Central US","Central US","East US 2","Central US EUAP","East + US 2 EUAP","West Europe","Australia East","Australia Southeast","Brazil South","Canada + Central","Canada East","Central India","East Asia","Japan East","Japan West","North + Central US","North Europe","Southeast Asia","South India","UK South","UK West","West + US","West Central US","France Central","Korea Central","South Africa North","UAE + North","Switzerland North","Switzerland West","UAE Central","Brazil Southeast","Germany + West Central","Norway East","Korea South","West US 3","Norway West","Sweden + Central","Sweden South","Jio India West","Jio India Central","Australia Central + 2"],"apiVersions":["2019-06-01-preview"],"capabilities":"None"},{"resourceType":"registries/runs/listLogSasUrl","locations":["East US","West Europe","West US 2","South Central US","Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US 2","Japan East","Japan West","North Central US","North @@ -5619,7 +7958,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil @@ -5628,7 +7967,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"registries/webhooks/ping","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil @@ -5637,7 +7976,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/getCallbackConfig","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","South Africa North","UAE @@ -5645,7 +7984,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/webhooks/listEvents","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","South Africa North","UAE @@ -5653,7 +7992,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/setupAuth","locations":["East + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/setupAuth","locations":["East US","West Europe","West US 2","South Central US","Australia East","Australia Southeast","Brazil South","Canada Central","Canada East","Central India","Central US","East Asia","East US 2","Japan East","Japan West","North Central US","North @@ -5677,7 +8016,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"locations/deleteVirtualNetworkOrSubnets","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","South Africa North","UAE @@ -5695,7 +8034,7 @@ interactions: Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/regenerateCredential","locations":["South Central US","West US","East US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","South Africa North","UAE North","France Central","East Asia","Japan East","Japan @@ -5703,7 +8042,7 @@ interactions: Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West + India West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-03-01"],"capabilities":"None"},{"resourceType":"registries/listUsages","locations":["West Central US","East US","West Europe","South Central US","West US","Japan East","North Europe","Southeast Asia","North Central US","East US 2","West US 2","Brazil South","Australia East","Central India","Korea Central","South Africa North","UAE @@ -5711,7 +8050,7 @@ interactions: West","Australia Southeast","East Asia","Japan West","South India","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India - West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West + West","Jio India Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01"],"capabilities":"None"},{"resourceType":"registries/listPolicies","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","South Africa North","UAE North","France Central","East Asia","Japan East","Japan @@ -5746,7 +8085,7 @@ interactions: Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","East US 2 EUAP","Central - US EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-06-01-preview","2017-03-01","2016-06-27-preview"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","South Central US","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central India","Korea Central","France Central","South Africa North","UAE North","East Asia","Japan East","Japan @@ -5754,7 +8093,7 @@ interactions: Central","Central US","East US 2","North Central US","West Central US","West US 2","Switzerland North","UAE Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio - India West","Jio India Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-06-01-preview","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South + India West","Jio India Central","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01","2017-10-01","2017-06-01-preview","2017-03-01"],"capabilities":"None"},{"resourceType":"locations","locations":["South Central US","East US","West US","Central US","East US 2","North Central US","West Central US","West US 2","Brazil South","Canada East","Canada Central","West Europe","North Europe","UK South","UK West","Australia East","Australia Southeast","Central @@ -5763,16 +8102,16 @@ interactions: Central","Switzerland West","Germany West Central","Brazil Southeast","Norway East","Korea South","West US 3","Norway West","Sweden Central","Jio India West","Jio India Central","Australia Central 2","Central US EUAP","East US - 2 EUAP"],"apiVersions":["2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01","2017-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + 2 EUAP"],"apiVersions":["2021-09-01","2021-08-01-preview","2021-06-01-preview","2020-11-01-preview","2019-12-01-preview","2019-05-01-preview","2019-05-01","2017-10-01","2017-06-01-preview"],"capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '42069' + - '43961' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:21:53 GMT + - Thu, 30 Dec 2021 23:43:10 GMT expires: - '-1' pragma: @@ -5802,21 +8141,22 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2019-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.ContainerRegistry/registries/clireg000003/webhooks/cliregwebhook?api-version=2021-09-01 response: body: string: '' headers: api-supported-versions: - - '2019-05-01' + - 2019-12-01-preview, 2020-11-01-preview, 2021-06-01-preview, 2021-08-01-preview, + 2021-09-01, 2021-12-01-preview cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Oct 2021 03:21:59 GMT + - Thu, 30 Dec 2021 23:43:12 GMT expires: - '-1' pragma: @@ -5846,7 +8186,7 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/providers/Microsoft.Network?api-version=2021-04-01 response: @@ -5856,534 +8196,479 @@ interactions: Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East - US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/taggedTrafficConsumers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"natGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":[]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":[]},{"location":"East US","zones":["2","3","1"]},{"location":"East - US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France - Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South - Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Switzerland - North","zones":[]},{"location":"UK South","zones":["2","3","1"]},{"location":"West - Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West - US 3","zones":["2","3","1"]}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["1","3","2"]},{"location":"Brazil South","zones":["1","3","2"]},{"location":"Canada + Central","zones":["1","3","2"]},{"location":"Central India","zones":["1","3","2"]},{"location":"Central + US","zones":["1","3","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["1","3","2"]},{"location":"East US","zones":["1","3","2"]},{"location":"East + US 2","zones":["1","3","2"]},{"location":"East US 2 EUAP","zones":["1","3","2"]},{"location":"France + Central","zones":["1","3","2"]},{"location":"Germany West Central","zones":["1","3","2"]},{"location":"Japan + East","zones":["1","3","2"]},{"location":"Korea Central","zones":["1","3","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["1","3","2"]},{"location":"Norway + East","zones":["1","3","2"]},{"location":"South Africa North","zones":["1","3","2"]},{"location":"South + Central US","zones":["1","3","2"]},{"location":"Southeast Asia","zones":["1","3","2"]},{"location":"Sweden + Central","zones":["1","3","2"]},{"location":"Switzerland North","zones":[]},{"location":"UAE + North","zones":[]},{"location":"UK South","zones":["1","3","2"]},{"location":"West + Europe","zones":["1","3","2"]},{"location":"West US 2","zones":["1","3","2"]},{"location":"West + US 3","zones":["1","3","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":[]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":[]},{"location":"East US","zones":["2","3","1"]},{"location":"East - US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France - Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South - Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Switzerland - North","zones":[]},{"location":"UK South","zones":["2","3","1"]},{"location":"West - Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West - US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"zoneMappings":[{"location":"Australia + East","zones":["1","3","2"]},{"location":"Brazil South","zones":["1","3","2"]},{"location":"Canada + Central","zones":["1","3","2"]},{"location":"Central India","zones":["1","3","2"]},{"location":"Central + US","zones":["1","3","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["1","3","2"]},{"location":"East US","zones":["1","3","2"]},{"location":"East + US 2","zones":["1","3","2"]},{"location":"East US 2 EUAP","zones":["1","3","2"]},{"location":"France + Central","zones":["1","3","2"]},{"location":"Germany West Central","zones":["1","3","2"]},{"location":"Japan + East","zones":["1","3","2"]},{"location":"Korea Central","zones":["1","3","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["1","3","2"]},{"location":"Norway + East","zones":["1","3","2"]},{"location":"South Africa North","zones":["1","3","2"]},{"location":"South + Central US","zones":["1","3","2"]},{"location":"Southeast Asia","zones":["1","3","2"]},{"location":"Sweden + Central","zones":["1","3","2"]},{"location":"Switzerland North","zones":[]},{"location":"UAE + North","zones":[]},{"location":"UK South","zones":["1","3","2"]},{"location":"West + Europe","zones":["1","3","2"]},{"location":"West US 2","zones":["1","3","2"]},{"location":"West + US 3","zones":["1","3","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"customIpPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":[]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":[]},{"location":"East US","zones":["2","3","1"]},{"location":"East - US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France - Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South - Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Switzerland - North","zones":[]},{"location":"UK South","zones":["2","3","1"]},{"location":"West - Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West - US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"Australia + East","zones":["1","3","2"]},{"location":"Brazil South","zones":["1","3","2"]},{"location":"Canada + Central","zones":["1","3","2"]},{"location":"Central India","zones":["1","3","2"]},{"location":"Central + US","zones":["1","3","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["1","3","2"]},{"location":"East US","zones":["1","3","2"]},{"location":"East + US 2","zones":["1","3","2"]},{"location":"East US 2 EUAP","zones":["1","3","2"]},{"location":"France + Central","zones":["1","3","2"]},{"location":"Germany West Central","zones":["1","3","2"]},{"location":"Japan + East","zones":["1","3","2"]},{"location":"Korea Central","zones":["1","3","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["1","3","2"]},{"location":"Norway + East","zones":["1","3","2"]},{"location":"South Africa North","zones":["1","3","2"]},{"location":"South + Central US","zones":["1","3","2"]},{"location":"Southeast Asia","zones":["1","3","2"]},{"location":"Sweden + Central","zones":["1","3","2"]},{"location":"Switzerland North","zones":[]},{"location":"UAE + North","zones":[]},{"location":"UK South","zones":["1","3","2"]},{"location":"West + Europe","zones":["1","3","2"]},{"location":"West US 2","zones":["1","3","2"]},{"location":"West + US 3","zones":["1","3","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkInterfaces","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East - US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dscpConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East - US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateEndpoints/privateLinkServiceProxies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"defaultApiVersion":"2020-03-01","capabilities":"None"},{"resourceType":"privateEndpointRedirectMaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","South Africa + North","UAE North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Central US EUAP","East US 2 EUAP","Korea + South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"loadBalancers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East - US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"CrossResourceGroupResourceMove, + South","Korea Central","France Central","Australia Central","South Africa + North","UAE North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Central US EUAP","East US 2 EUAP","Korea + South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationSecurityGroups","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2017-09-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"serviceEndpointPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkIntentPolicies","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","France - South","Australia Central","South Africa North","UAE North","Switzerland North","Germany - West Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"routeTables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"publicIPPrefixes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":[]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":[]},{"location":"East US","zones":["2","3","1"]},{"location":"East - US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France - Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South - Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Switzerland - North","zones":[]},{"location":"UK South","zones":["2","3","1"]},{"location":"West - Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West - US 3","zones":["2","3","1"]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"ddosCustomPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["1","3","2"]},{"location":"Brazil South","zones":["1","3","2"]},{"location":"Canada + Central","zones":["1","3","2"]},{"location":"Central India","zones":["1","3","2"]},{"location":"Central + US","zones":["1","3","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["1","3","2"]},{"location":"East US","zones":["1","3","2"]},{"location":"East + US 2","zones":["1","3","2"]},{"location":"East US 2 EUAP","zones":["1","3","2"]},{"location":"France + Central","zones":["1","3","2"]},{"location":"Germany West Central","zones":["1","3","2"]},{"location":"Japan + East","zones":["1","3","2"]},{"location":"Korea Central","zones":["1","3","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["1","3","2"]},{"location":"Norway + East","zones":["1","3","2"]},{"location":"South Africa North","zones":["1","3","2"]},{"location":"South + Central US","zones":["1","3","2"]},{"location":"Southeast Asia","zones":["1","3","2"]},{"location":"Sweden + Central","zones":["1","3","2"]},{"location":"Switzerland North","zones":[]},{"location":"UAE + North","zones":[]},{"location":"UK South","zones":["1","3","2"]},{"location":"West + Europe","zones":["1","3","2"]},{"location":"West US 2","zones":["1","3","2"]},{"location":"West + US 3","zones":["1","3","2"]}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/connectionMonitors","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/flowLogs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkWatchers/pingMeshes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"locationMappings":[{"location":"East - US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"localNetworkGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"connections","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-03-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"applicationGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":[]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":[]},{"location":"East US","zones":["2","3","1"]},{"location":"East - US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France - Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South - Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Switzerland - North","zones":[]},{"location":"UK South","zones":["2","3","1"]},{"location":"West - Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West - US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["1","3","2"]},{"location":"Brazil South","zones":["1","3","2"]},{"location":"Canada + Central","zones":["1","3","2"]},{"location":"Central India","zones":["1","3","2"]},{"location":"Central + US","zones":["1","3","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["1","3","2"]},{"location":"East US","zones":["1","3","2"]},{"location":"East + US 2","zones":["1","3","2"]},{"location":"East US 2 EUAP","zones":["1","3","2"]},{"location":"France + Central","zones":["1","3","2"]},{"location":"Germany West Central","zones":["1","3","2"]},{"location":"Japan + East","zones":["1","3","2"]},{"location":"Korea Central","zones":["1","3","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["1","3","2"]},{"location":"Norway + East","zones":["1","3","2"]},{"location":"South Africa North","zones":["1","3","2"]},{"location":"South + Central US","zones":["1","3","2"]},{"location":"Southeast Asia","zones":["1","3","2"]},{"location":"Sweden + Central","zones":["1","3","2"]},{"location":"Switzerland North","zones":[]},{"location":"UAE + North","zones":[]},{"location":"UK South","zones":["1","3","2"]},{"location":"West + Europe","zones":["1","3","2"]},{"location":"West US 2","zones":["1","3","2"]},{"location":"West + US 3","zones":["1","3","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"applicationGatewayWebApplicationFirewallPolicies","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"locations","locations":[],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/operationResults","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/CheckDnsNameAvailability","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"locations/setLoadBalancerFrontendPublicIpAddresses","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"resourceType":"locations/usages","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2015-06-15"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2017-10-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2017-10-01"}],"capabilities":"None"},{"resourceType":"locations/virtualNetworkAvailableEndpointServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01"],"capabilities":"None"},{"resourceType":"locations/availableDelegations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/serviceTags","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availablePrivateEndpointTypes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01"],"capabilities":"None"},{"resourceType":"locations/availableServiceAliases","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"capabilities":"None"},{"resourceType":"locations/checkPrivateLinkServiceVisibility","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/autoApprovedPrivateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01"],"capabilities":"None"},{"resourceType":"locations/batchValidatePrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/batchNotifyPrivateEndpointsForResourceMove","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"locations/supportedVirtualMachineSizes","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/getAzureNetworkManagerConfiguration","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"capabilities":"None"},{"resourceType":"locations/checkAcceleratedNetworkingSupport","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/validateResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/setResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"locations/effectiveResourceOwnership","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"capabilities":"None"},{"resourceType":"operations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"dnszones","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2016-04-01"},{"profileVersion":"2018-03-01-hybrid","apiVersion":"2016-04-01"},{"profileVersion":"2019-03-01-hybrid","apiVersion":"2016-04-01"}],"capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"dnsOperationResults","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnsOperationStatuses","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"getDnsResourceReference","locations":["global"],"apiVersions":["2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/AAAA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CNAME","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/PTR","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/MX","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/TXT","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SRV","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/SOA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/NS","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/CAA","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/recordsets","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/all","locations":["global"],"apiVersions":["2018-05-01","2018-03-01-preview","2017-10-01","2017-09-15-preview","2017-09-01","2016-04-01","2015-05-04-preview"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"privateDnsZones","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsZones/virtualNetworkLinks","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"privateDnsOperationResults","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsOperationStatuses","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZonesInternal","locations":["global"],"apiVersions":["2020-06-01","2020-01-01"],"defaultApiVersion":"2020-01-01","capabilities":"None"},{"resourceType":"privateDnsZones/A","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/AAAA","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/CNAME","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/PTR","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/MX","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/TXT","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SRV","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/SOA","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"privateDnsZones/all","locations":["global"],"apiVersions":["2020-06-01","2020-01-01","2018-09-01"],"defaultApiVersion":"2018-09-01","capabilities":"None"},{"resourceType":"virtualNetworks/privateDnsZoneLinks","locations":["global"],"apiVersions":["2020-06-01"],"defaultApiVersion":"2020-06-01","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-05-01","2017-03-01","2015-11-01","2015-04-28-preview"],"defaultApiVersion":"2018-08-01","capabilities":"CrossResourceGroupResourceMove, @@ -6392,253 +8677,244 @@ interactions: Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteServiceProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableWafRuleSets","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableSslOptions","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableServerVariables","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableRequestHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"applicationGatewayAvailableResponseHeaders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01"],"capabilities":"None"},{"resourceType":"routeFilters","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","2016-07-01","2016-06-01","2016-03-30","2015-06-15","2015-05-01-preview","2014-12-01-preview"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"bgpServiceCommunities","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01"],"capabilities":"None"},{"resourceType":"virtualWans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnSites","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + South","Korea Central","France Central","Australia Central","South Africa + North","UAE North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Central US EUAP","East US 2 EUAP","Korea + South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnServerConfigurations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","South - Africa North","Switzerland North","Germany West Central","Norway East","West - US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","South Africa + North","Switzerland North","Germany West Central","Norway East","West US 3","Jio + India West","Sweden Central","Central US EUAP","East US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualHubs","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + South","Korea Central","France Central","Australia Central","South Africa + North","UAE North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Central US EUAP","East US 2 EUAP","Korea + South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"vpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + South","Korea Central","France Central","Australia Central","South Africa + North","UAE North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Central US EUAP","East US 2 EUAP","Korea + South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"p2sVpnGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","UAE - North","South Africa North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + South","Korea Central","France Central","Australia Central","UAE North","South + Africa North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRouteGateways","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePortsLocations","locations":["France - Central","West US","East US","North Europe","West Europe","East Asia","Southeast - Asia","North Central US","South Central US","Central US","East US 2","Japan - East","Japan West","Brazil South","Australia East","Australia Southeast","Central - India","South India","West India","Canada Central","Canada East","West Central - US","West US 2","UK West","UK South","Central US EUAP","East US 2 EUAP","Korea - Central","Korea South","Australia Central","South Africa North","UAE North","Switzerland - North","Germany West Central","Norway East","West US 3","East US SLV","Jio - India West","Qatar Central"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["UAE - North","Australia Central 2","UAE Central","Germany North","Central India","Korea - South","Switzerland North","Switzerland West","Japan West","France South","South - Africa West","West India","Canada East","South India","Germany West Central","Norway - East","Norway West","South Africa North","East Asia","Southeast Asia","Korea - Central","Brazil South","Brazil Southeast","West US 3","Jio India West","Japan - East","UK West","West US","East US","North Europe","West Europe","West Central - US","South Central US","Australia East","Australia Central","Australia Southeast","UK - South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"ipGroups","locations":["UAE North","Australia - Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland + Central"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"firewallPolicies","locations":["UAE + North","Australia Central 2","UAE Central","Germany North","Central India","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil Southeast","West US 3","Jio India West","Japan East","UK West","West - US","East US","North Europe","West Europe","South Central US","Australia East","Australia + US","East US","North Europe","West Europe","West Central US","South Central + US","Australia East","Australia Central","Australia Southeast","UK South","East + US 2","West US 2","North Central US","Canada Central","France Central","Central + US","Korea South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"ipGroups","locations":["UAE North","Australia + Central 2","UAE Central","Germany North","Central India","Switzerland North","Switzerland + West","Japan West","France South","South Africa West","West India","Canada + East","South India","Germany West Central","Norway East","Norway West","South + Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil + Southeast","West US 3","Jio India West","Japan East","UK West","West US","East + US","North Europe","West Europe","South Central US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central - US","Canada Central","France Central","West Central US","Central US","Central - US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"capabilities":"None"},{"resourceType":"securityPartnerProviders","locations":["West + US","Canada Central","France Central","West Central US","Central US","Korea + South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + SupportsLocation"},{"resourceType":"azureWebCategories","locations":[],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"capabilities":"None"},{"resourceType":"securityPartnerProviders","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewalls","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK South","France - Central","Australia Central","Japan West","Japan East","Korea Central","Korea - South","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia - East","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Canada - Central","zones":["2","3","1"]},{"location":"Central India","zones":[]},{"location":"Central - US","zones":["2","3","1"]},{"location":"Central US EUAP","zones":["1","2"]},{"location":"East - Asia","zones":[]},{"location":"East US","zones":["2","3","1"]},{"location":"East - US 2","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"France - Central","zones":["2","3","1"]},{"location":"Germany West Central","zones":["2","3","1"]},{"location":"Japan - East","zones":["2","3","1"]},{"location":"Korea Central","zones":["2","3","1"]},{"location":"North - Central US","zones":[]},{"location":"North Europe","zones":["2","3","1"]},{"location":"Norway - East","zones":["2","3","1"]},{"location":"South Africa North","zones":["2","3","1"]},{"location":"South - Central US","zones":["2","3","1"]},{"location":"Southeast Asia","zones":["2","3","1"]},{"location":"Switzerland - North","zones":[]},{"location":"UK South","zones":["2","3","1"]},{"location":"West - Europe","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"West - US 3","zones":["2","3","1"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West + Central","Australia Central","Japan West","Japan East","Korea Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01"],"defaultApiVersion":"2020-03-01","zoneMappings":[{"location":"Australia + East","zones":["1","3","2"]},{"location":"Brazil South","zones":["1","3","2"]},{"location":"Canada + Central","zones":["1","3","2"]},{"location":"Central India","zones":["1","3","2"]},{"location":"Central + US","zones":["1","3","2"]},{"location":"Central US EUAP","zones":["2","1"]},{"location":"East + Asia","zones":["1","3","2"]},{"location":"East US","zones":["1","3","2"]},{"location":"East + US 2","zones":["1","3","2"]},{"location":"East US 2 EUAP","zones":["1","3","2"]},{"location":"France + Central","zones":["1","3","2"]},{"location":"Germany West Central","zones":["1","3","2"]},{"location":"Japan + East","zones":["1","3","2"]},{"location":"Korea Central","zones":["1","3","2"]},{"location":"North + Central US","zones":[]},{"location":"North Europe","zones":["1","3","2"]},{"location":"Norway + East","zones":["1","3","2"]},{"location":"South Africa North","zones":["1","3","2"]},{"location":"South + Central US","zones":["1","3","2"]},{"location":"Southeast Asia","zones":["1","3","2"]},{"location":"Sweden + Central","zones":["1","3","2"]},{"location":"Switzerland North","zones":[]},{"location":"UAE + North","zones":[]},{"location":"UK South","zones":["1","3","2"]},{"location":"West + Europe","zones":["1","3","2"]},{"location":"West US 2","zones":["1","3","2"]},{"location":"West + US 3","zones":["1","3","2"]}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"azureFirewallFqdnTags","locations":["West + US","East US","North Europe","West Europe","East Asia","Southeast Asia","North + Central US","South Central US","Central US","East US 2","Japan East","Japan + West","Brazil South","Australia East","Australia Southeast","Central India","South + India","West India","Canada Central","Canada East","West Central US","West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"capabilities":"None"},{"resourceType":"virtualNetworkTaps","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","locationMappings":[{"location":"East - US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","onefleetedge1mockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3","microsoftrrdclab4","microsoftrrdclab5","microsoftrrdclab6","microsoftrrdclab7","microsoftrrdclab8","microsoftrrdclab9","microsoftrrdclab10","microsoftdclabs1","microsoftb25lab1"]},{"location":"West - US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1","microsoftlasvegas1"]},{"location":"Canada - Central","type":"EdgeZone","extendedLocations":["microsoftvancouver1"]},{"location":"East - US 2","type":"EdgeZone","extendedLocations":["microsoftmiami1","attatlanta1"]},{"location":"East - US","type":"EdgeZone","extendedLocations":["microsoftnewyork1","vzwindsor1","ezecustomerlabboston1"]},{"location":"Australia - Southeast","type":"EdgeZone","extendedLocations":["microsoftperth1"]},{"location":"South - Central US","type":"EdgeZone","extendedLocations":["attdallas1","ezecustomerlabhouston1"]}],"capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"locations/privateLinkServices","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"capabilities":"None"},{"resourceType":"ddosProtectionPlans","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01"],"defaultApiVersion":"2020-03-01","apiProfiles":[{"profileVersion":"2017-03-09-profile","apiVersion":"2018-02-01"}],"capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkProfiles","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + South","Korea Central","France Central","Australia Central","South Africa + North","UAE North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Central US EUAP","East US 2 EUAP","Korea + South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"checkFrontdoorNameAvailability","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil - South","Australia East","Australia Southeast"],"apiVersions":["2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central + South","Australia East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallManagedRuleSets","locations":["global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"resourceType":"locations/bareMetalTenants","locations":["West @@ -6646,97 +8922,118 @@ interactions: Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"bastionHosts","locations":["West + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"capabilities":"None"},{"resourceType":"bastionHosts","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"virtualRouters","locations":["UAE North","Australia - Central 2","UAE Central","Germany North","Central India","Korea South","Switzerland - North","Switzerland West","Japan West","France South","South Africa West","West - India","Canada East","South India","Germany West Central","Norway East","Norway - West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil - South","Brazil Southeast","West US 3","Jio India West","Japan East","UK West","West - US","East US","North Europe","West Europe","West Central US","South Central - US","Australia East","Australia Central","Australia Southeast","UK South","East - US 2","West US 2","North Central US","Canada Central","France Central","Central - US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Central 2","UAE Central","Germany North","Central India","Switzerland North","Switzerland + West","Japan West","France South","South Africa West","West India","Canada + East","South India","Germany West Central","Norway East","Norway West","South + Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Brazil + Southeast","West US 3","Jio India West","Japan East","UK West","West US","East + US","North Europe","West Europe","West Central US","South Central US","Australia + East","Australia Central","Australia Southeast","UK South","East US 2","West + US 2","North Central US","Canada Central","France Central","Central US","Korea + South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["Brazil Southeast","West US 3","Jio India West","UAE North","Australia Central 2","UAE - Central","Germany North","Central India","Korea South","Switzerland North","Switzerland + Central","Germany North","Central India","Switzerland North","Switzerland West","Japan West","France South","South Africa West","West India","Canada East","South India","Germany West Central","Norway East","Norway West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil South","Japan East","UK West","West US","East US","North Europe","West Europe","West Central US","South Central US","Australia East","Australia Central","Australia Southeast","UK South","East US 2","West US 2","North Central US","Canada Central","France - Central","Central US","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, + Central","Central US","Korea South","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01"],"defaultApiVersion":"2020-04-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"ipAllocations","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West US 2","UK West","UK - South","Korea Central","Korea South","France Central","Australia Central","South - Africa North","UAE North","Switzerland North","Germany West Central","Norway - East","West US 3","Jio India West","Central US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + South","Korea Central","France Central","Australia Central","South Africa + North","UAE North","Switzerland North","Germany West Central","Norway East","West + US 3","Jio India West","Sweden Central","Central US EUAP","East US 2 EUAP","Korea + South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"networkManagers","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","Jio India West","South Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Brazil Southeast","Korea Central","Southeast Asia","South + Central US","Norway West","Australia East","Japan East","Canada East","Canada + Central","Switzerland North","East US 2 EUAP","Central US EUAP","Korea South"],"apiVersions":["2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["West Central US","North Central US","West US","West Europe","UAE Central","Germany North","East US","West India","East US 2","Australia Central","Australia Central 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE North","Germany West Central","Switzerland West","East Asia","Jio India West","South Africa North","UK South","South India","Australia Southeast","France South","West - US 2","Japan West","Norway East","France Central","West US 3","Central India","Korea - South","Brazil Southeast","Korea Central","Southeast Asia","South Central - US","Norway West","Australia East","Japan East","Canada East","Canada Central","Switzerland - North","East US 2 EUAP","Central US EUAP"],"apiVersions":["2021-02-01-preview","2020-08-01"],"capabilities":"None"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"locations/serviceTagDetails","locations":["West - US","East US","North Europe","West Europe","East Asia","Southeast Asia","North - Central US","South Central US","Central US","East US 2","Japan East","Japan - West","Brazil South","Australia East","Australia Southeast","Central India","South - India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Korea Central","Korea South","France Central","Australia - Central","South Africa North","UAE North","Switzerland North","Germany West - Central","Norway East","West US 3","Jio India West","Central US EUAP","East - US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01"],"capabilities":"None"},{"resourceType":"networkWatchers/lenses","locations":["Central - US EUAP","East US 2 EUAP"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"expressRoutePorts","locations":["West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Brazil Southeast","Korea Central","Southeast Asia","South + Central US","Norway West","Australia East","Japan East","Canada East","Canada + Central","Switzerland North","East US 2 EUAP","Central US EUAP","Korea South"],"apiVersions":["2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Brazil Southeast","Korea Central","Southeast Asia","South + Central US","Norway West","Australia East","Japan East","Canada East","Canada + Central","Switzerland North","East US 2 EUAP","Central US EUAP","Korea South"],"apiVersions":["2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"None"},{"resourceType":"networkManagerConnections","locations":["West + Central US"],"apiVersions":["2021-02-01-preview"],"defaultApiVersion":"2021-02-01-preview","capabilities":"SupportsExtension"},{"resourceType":"locations/commitInternalAzureNetworkManagerConfiguration","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Brazil Southeast","Korea Central","Southeast Asia","South + Central US","Norway West","Australia East","Japan East","Canada East","Canada + Central","Switzerland North","East US 2 EUAP","Central US EUAP","Korea South"],"apiVersions":["2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"capabilities":"None"},{"resourceType":"locations/internalAzureVirtualNetworkManagerOperation","locations":["West + Central US","North Central US","West US","West Europe","UAE Central","Germany + North","East US","West India","East US 2","Australia Central","Australia Central + 2","South Africa West","Brazil South","UK West","North Europe","Central US","UAE + North","Germany West Central","Switzerland West","East Asia","Jio India West","South + Africa North","UK South","South India","Australia Southeast","France South","West + US 2","Sweden Central","Japan West","Norway East","France Central","West US + 3","Central India","Brazil Southeast","Korea Central","Southeast Asia","South + Central US","Norway West","Australia East","Japan East","Canada East","Canada + Central","Switzerland North","East US 2 EUAP","Central US EUAP","Korea South"],"apiVersions":["2021-02-01-preview","2020-08-01"],"capabilities":"None"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01"],"defaultApiVersion":"2020-04-01","capabilities":"None"},{"resourceType":"locations/serviceTagDetails","locations":["West US","East US","North Europe","West Europe","East Asia","Southeast Asia","North Central US","South Central US","Central US","East US 2","Japan East","Japan West","Brazil South","Australia East","Australia Southeast","Central India","South India","West India","Canada Central","Canada East","West Central US","West - US 2","UK West","UK South","Central US EUAP","East US 2 EUAP","Korea Central","Korea - South","France Central","Australia Central","UAE North","South Africa North","Switzerland - North","Germany West Central","Norway East","West US 3","East US SLV","Jio - India West","Qatar Central"],"apiVersions":["2021-05-01","2021-04-01","2021-05-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01"],"defaultApiVersion":"2020-03-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central + US 2","UK West","UK South","Korea Central","France Central","Australia Central","South + Africa North","UAE North","Switzerland North","Germany West Central","Norway + East","West US 3","Jio India West","Sweden Central","Central US EUAP","East + US 2 EUAP","Korea South"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01"],"capabilities":"None"},{"resourceType":"networkWatchers/lenses","locations":["Central + US EUAP","East US 2 EUAP"],"apiVersions":["2021-06-01","2021-05-01","2021-04-01","2021-03-01","2021-02-01","2021-01-01","2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01"],"defaultApiVersion":"2020-03-01","capabilities":"CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"frontdoorOperationResults","locations":["global"],"apiVersions":["2021-06-01","2020-11-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-11-01","2019-10-01","2019-08-01","2019-05-01","2019-04-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors","locations":["Central US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags, SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","locations":["Central US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","locations":["Central US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia - East","Australia Southeast"],"apiVersions":["2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East + East","Australia Southeast"],"apiVersions":["2021-06-01","2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["East US 2 EUAP","global","Central US","East US","East US 2","North Central US","South Central US","West US","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia East","Australia @@ -6746,44 +9043,16 @@ interactions: Central US","South Central US","West US","West US 2","North Europe","West Europe","East Asia","Southeast Asia","Japan East","Japan West","Brazil South","Australia East","Australia Southeast"],"apiVersions":["2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"SupportsTags, - SupportsLocation"},{"resourceType":"networkManagers","locations":["East US - 2 EUAP","Central US EUAP","West Central US","North Central US","West US","West - Europe","UAE Central","Germany North","East US","West India","East US 2","Australia - Central","Australia Central 2","South Africa West","Brazil South","UK West","North - Europe","Central US","UAE North","Germany West Central","Switzerland West","East - Asia","Jio India West","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Japan West","Norway East","France Central","West - US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","East US SLV","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central"],"apiVersions":["2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveConnectivityConfigurations","locations":["East - US 2 EUAP","Central US EUAP","West Central US","North Central US","West US","West - Europe","UAE Central","Germany North","East US","West India","East US 2","Australia - Central","Australia Central 2","South Africa West","Brazil South","UK West","North - Europe","Central US","UAE North","Germany West Central","Switzerland West","East - Asia","Jio India West","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Japan West","Norway East","France Central","West - US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","East US SLV","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central"],"apiVersions":["2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"None"},{"resourceType":"virtualNetworks/listNetworkManagerEffectiveSecurityAdminRules","locations":["East - US 2 EUAP","Central US EUAP","West Central US","North Central US","West US","West - Europe","UAE Central","Germany North","East US","West India","East US 2","Australia - Central","Australia Central 2","South Africa West","Brazil South","UK West","North - Europe","Central US","UAE North","Germany West Central","Switzerland West","East - Asia","Jio India West","South Africa North","UK South","South India","Australia - Southeast","France South","West US 2","Japan West","Norway East","France Central","West - US 3","Central India","Korea South","Brazil Southeast","Korea Central","Southeast - Asia","East US SLV","South Central US","Norway West","Australia East","Japan - East","Canada East","Canada Central","Switzerland North","Qatar Central"],"apiVersions":["2021-02-01-preview","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"defaultApiVersion":"2019-11-01","capabilities":"None"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' + SupportsLocation"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}' headers: cache-control: - no-cache content-length: - - '133200' + - '124768' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:22:02 GMT + - Thu, 30 Dec 2021 23:43:13 GMT expires: - '-1' pragma: @@ -6813,9 +9082,9 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_tag_update_by_patch000001/providers/Microsoft.Network/publicIPAddresses/cli_ip000004?api-version=2021-06-01 response: body: string: '' @@ -6823,17 +9092,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/739fe175-de44-40a7-b4c4-188633cf7256?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/39efd15f-541a-43ca-99f7-564a711ae7c7?api-version=2021-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Oct 2021 03:22:03 GMT + - Thu, 30 Dec 2021 23:43:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/739fe175-de44-40a7-b4c4-188633cf7256?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operationResults/39efd15f-541a-43ca-99f7-564a711ae7c7?api-version=2021-06-01 pragma: - no-cache server: @@ -6844,7 +9113,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f0bddd0f-3bf4-4f15-b502-b6f82795cf0c + - 9d655b70-5c76-4bda-8e6b-3190ee5fdb09 x-ms-ratelimit-remaining-subscription-deletes: - '14999' status: @@ -6864,9 +9133,58 @@ interactions: ParameterSetName: - --id User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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/providers/Microsoft.Network/locations/westus/operations/39efd15f-541a-43ca-99f7-564a711ae7c7?api-version=2021-06-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Thu, 30 Dec 2021 23:43:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - dd9f3a22-ffc5-4cb1-87f6-9b8dfd946fa6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - resource delete + Connection: + - keep-alive + ParameterSetName: + - --id + User-Agent: + - 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/providers/Microsoft.Network/locations/westus/operations/739fe175-de44-40a7-b4c4-188633cf7256?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/39efd15f-541a-43ca-99f7-564a711ae7c7?api-version=2021-06-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -6878,7 +9196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Oct 2021 03:22:13 GMT + - Thu, 30 Dec 2021 23:43:34 GMT expires: - '-1' pragma: @@ -6895,7 +9213,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f472d449-2a57-4576-87aa-361770af6748 + - 0090b481-1a39-4f03-8f0c-e0bbb1cf1698 status: code: 200 message: OK